QuotaFormulaRuleConstantMapper.java 944 B

12345678910111213141516171819202122
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.github.yulichang.base.MPJBaseMapper;
  5. import com.xjrsoft.module.personnel.dto.BasePersonnelLabourCapitalMonthPageDto;
  6. import com.xjrsoft.module.personnel.vo.BasePersonnelLabourCapitalMonthPageVo;
  7. import com.xjrsoft.module.student.dto.QuotaFormulaRuleConstantPageDto;
  8. import com.xjrsoft.module.student.entity.QuotaFormulaRuleConstant;
  9. import com.xjrsoft.module.student.vo.QuotaFormulaRuleConstantPageVo;
  10. import org.apache.ibatis.annotations.Mapper;
  11. /**
  12. * @title: 考核基数
  13. * @Author szs
  14. * @Date: 2024-01-29
  15. * @Version 1.0
  16. */
  17. @Mapper
  18. public interface QuotaFormulaRuleConstantMapper extends MPJBaseMapper<QuotaFormulaRuleConstant> {
  19. Page<QuotaFormulaRuleConstantPageVo> getPage(Page<QuotaFormulaRuleConstantPageDto> page, QuotaFormulaRuleConstantPageDto dto);
  20. }