SbgjjAdminCbryMapper.java 907 Bytes
Newer Older
yuquan.zhu committed
1
package cn.timer.api.dao.sbgjj;
2 3
import java.util.List;

lal committed
4
import org.apache.ibatis.annotations.Param;
yuquan.zhu committed
5 6 7
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
lal committed
8
import com.baomidou.mybatisplus.core.metadata.IPage;
yuquan.zhu committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

import cn.timer.api.bean.sbgjj.SbgjjAdminCbry;
import cn.timer.api.bean.yggl.YgglMainEmp;
import cn.timer.api.dto.sbgjj.InspersonnelDto;
import cn.timer.api.dto.sbgjj.InsuredPersonnelDto;

/**
*  参保人员
* @author Tang 2019-12-09
*/
@Repository
public interface SbgjjAdminCbryMapper extends BaseMapper<SbgjjAdminCbry> {

	List<InsuredPersonnelDto> InsuredPersonnel(InspersonnelDto inspersonneldto);
	
	int insertsbgjjadmincbry(SbgjjAdminCbry sbgjjadmincbry);
	
	List<YgglMainEmp> EmployeeListByorgCode(int orgCode);
	
lal committed
28 29 30
	
	IPage<InsuredPersonnelDto> InsuredEmployees(IPage<InsuredPersonnelDto> page,@Param("param") InspersonnelDto inspe);
	
yuquan.zhu committed
31
}