46 lines
1.1 KiB
Java
46 lines
1.1 KiB
Java
package com.cm.population.dao.populationlog;
|
|
|
|
import com.cm.common.exception.SaveException;
|
|
import com.cm.common.exception.SearchException;
|
|
import com.cm.population.pojo.dtos.populationlog.PopulationLogDTO;
|
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @ClassName: IPopulationLogDao
|
|
* @Description: 基础人口创建人修改日志
|
|
* @Author: CodeFactory
|
|
* @Date: 2023-10-24 11:55:46
|
|
* @Version: 3.0
|
|
**/
|
|
@Repository
|
|
public interface IPopulationLogDao {
|
|
|
|
/**
|
|
* 新增基础人口信息
|
|
*
|
|
* @param params
|
|
* @throws SaveException
|
|
*/
|
|
void save(Map<String, Object> params) throws SaveException;
|
|
|
|
/**
|
|
* 基础人口信息列表
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
List<PopulationLogDTO> list(Map<String, Object> params) throws SearchException;
|
|
|
|
/**
|
|
* 基础人口信息统计
|
|
*
|
|
* @param params
|
|
* @return
|
|
* @throws SearchException
|
|
*/
|
|
Integer count(Map<String, Object> params) throws SearchException;
|
|
|
|
} |