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.
36 lines
936 B
36 lines
936 B
3 years ago
|
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;
|
||
|
|
||
|
/**
|
||
|
* 福利表
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-05-09
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface ChangeWelfareDao extends BaseDao<ChangeWelfareEntity> {
|
||
|
|
||
|
/**
|
||
|
* @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);
|
||
|
}
|