| 12345678910111213141516171819202122 |
- package com.xjrsoft.module.student.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.personnel.dto.BasePersonnelLabourCapitalMonthPageDto;
- import com.xjrsoft.module.personnel.vo.BasePersonnelLabourCapitalMonthPageVo;
- import com.xjrsoft.module.student.dto.QuotaFormulaRuleConstantPageDto;
- import com.xjrsoft.module.student.entity.QuotaFormulaRuleConstant;
- import com.xjrsoft.module.student.vo.QuotaFormulaRuleConstantPageVo;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 考核基数
- * @Author szs
- * @Date: 2024-01-29
- * @Version 1.0
- */
- @Mapper
- public interface QuotaFormulaRuleConstantMapper extends MPJBaseMapper<QuotaFormulaRuleConstant> {
- Page<QuotaFormulaRuleConstantPageVo> getPage(Page<QuotaFormulaRuleConstantPageDto> page, QuotaFormulaRuleConstantPageDto dto);
- }
|