日照智慧社区接口服务
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.
 
 
 
 
 

29 lines
669 B

package com.epmet.dao;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.dto.ChangeDeathDTO;
import com.epmet.entity.ChangeDeathEntity;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
/**
* 死亡名单表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-05-05
*/
@Mapper
public interface ChangeDeathDao extends BaseDao<ChangeDeathEntity> {
/**
* 死亡名单列表
*
* @param params
* @return java.util.List<com.epmet.dto.ChangeDeathDTO>
* @author zhy
* @date 2022/5/12 17:44
*/
List<ChangeDeathDTO> getDeathList(Map<String, Object> params);
}