XcglAdminXzzMapper.java 923 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
package cn.timer.api.dao.xcgl;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import java.util.List;

import org.springframework.stereotype.Repository;

import cn.timer.api.bean.xcgl.XcglAdminXzz;
import cn.timer.api.dto.xcgl.PayrollExceptionDto;

/**
 * @author lalqq 薪资组
 */
@Repository
public interface XcglAdminXzzMapper extends BaseMapper<XcglAdminXzz> {
	
	List<PayrollExceptionDto> PayrollException(int qyid, int id, String xzyf);

	/**
	 * [新增]
	 * 
	 **/
	int insert(XcglAdminXzz xcglAdminXzz);

	/**
	 * [刪除]
	 * 
	 **/
	int delete(int id);

	/**
	 * [更新]
	 * 
	 **/
	int update(XcglAdminXzz xcglAdminXzz);

	/**
	 * [查詢] 根據主鍵 id 查詢
	 * 
	 **/
	XcglAdminXzz load(int id);

	/**
	 * [查詢] 分頁查詢
	 * 
	 **/
	List<XcglAdminXzz> pageList(int offset, int pagesize);

	/**
	 * [查詢] 分頁查詢 count
	 * 
	 **/
	int pageListCount(int offset, int pagesize);
}