You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.6 KiB
78 lines
1.6 KiB
package com.epmet.service;
|
|
|
|
import com.epmet.commons.mybatis.service.BaseService;
|
|
import com.epmet.commons.tools.page.PageData;
|
|
import com.epmet.dto.IcResiUserDeadTaskLogDTO;
|
|
import com.epmet.entity.IcResiUserDeadTaskLogEntity;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 居民死亡任务log
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2023-05-16
|
|
*/
|
|
public interface IcResiUserDeadTaskLogService extends BaseService<IcResiUserDeadTaskLogEntity> {
|
|
|
|
/**
|
|
* 默认分页
|
|
*
|
|
* @param params
|
|
* @return PageData<IcResiUserDeadTaskLogDTO>
|
|
* @author generator
|
|
* @date 2023-05-16
|
|
*/
|
|
PageData<IcResiUserDeadTaskLogDTO> page(Map<String, Object> params);
|
|
|
|
/**
|
|
* 默认查询
|
|
*
|
|
* @param params
|
|
* @return java.util.List<IcResiUserDeadTaskLogDTO>
|
|
* @author generator
|
|
* @date 2023-05-16
|
|
*/
|
|
List<IcResiUserDeadTaskLogDTO> list(Map<String, Object> params);
|
|
|
|
/**
|
|
* 单条查询
|
|
*
|
|
* @param id
|
|
* @return IcResiUserDeadTaskLogDTO
|
|
* @author generator
|
|
* @date 2023-05-16
|
|
*/
|
|
IcResiUserDeadTaskLogDTO get(String id);
|
|
|
|
/**
|
|
* 默认保存
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2023-05-16
|
|
*/
|
|
void save(IcResiUserDeadTaskLogDTO dto);
|
|
|
|
/**
|
|
* 默认更新
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2023-05-16
|
|
*/
|
|
void update(IcResiUserDeadTaskLogDTO dto);
|
|
|
|
/**
|
|
* 批量删除
|
|
*
|
|
* @param ids
|
|
* @return void
|
|
* @author generator
|
|
* @date 2023-05-16
|
|
*/
|
|
void delete(String[] ids);
|
|
}
|