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.
50 lines
1.3 KiB
50 lines
1.3 KiB
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.dto.ChangeWelfareDTO;
|
|
import com.epmet.entity.ChangeWelfareEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 福利表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-05-09
|
|
*/
|
|
@Mapper
|
|
public interface ChangeWelfareDao extends BaseDao<ChangeWelfareEntity> {
|
|
|
|
/**
|
|
* 福利名单列表
|
|
*
|
|
* @param params
|
|
* @return java.util.List<com.epmet.dto.ChangeWelfareDTO>
|
|
* @author zhy
|
|
* @date 2022/5/12 17:44
|
|
*/
|
|
List<ChangeWelfareDTO> getWelfareList(Map<String, Object> params);
|
|
|
|
/**
|
|
* @describe: 通过身份证号查询福利人员
|
|
* @author wangtong
|
|
* @date 2022/5/9 13:59
|
|
* @params [idCard]
|
|
* @return com.epmet.plugin.power.modules.change.entity.ChangeWelfareEntity
|
|
*/
|
|
ChangeWelfareEntity selectByIdCard(@Param("idCard") String idCard);
|
|
|
|
/**
|
|
* @describe: 移除福利人员
|
|
* @author wangtong
|
|
* @date 2022/5/9 14:36
|
|
* @params [dto]
|
|
* @return com.epmet.commons.tools.utils.Result
|
|
*/
|
|
void removeWelfare(ChangeWelfareDTO dto);
|
|
|
|
List<String> getAllWelfareIdCard(@Param("customerId") String customerId);
|
|
}
|
|
|