QuotaFormulaRuleAttributeMapper.java 940 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.student.dto.QuotaFormulaRuleAttributePageDto;
  6. import com.xjrsoft.module.student.dto.QuotaFormulaRuleConstantPageDto;
  7. import com.xjrsoft.module.student.entity.QuotaFormulaRuleAttribute;
  8. import com.xjrsoft.module.student.vo.QuotaFormulaRuleAttributePageVo;
  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 QuotaFormulaRuleAttributeMapper extends MPJBaseMapper<QuotaFormulaRuleAttribute> {
  19. Page<QuotaFormulaRuleAttributePageVo> getPage(Page<QuotaFormulaRuleAttributePageDto> page, QuotaFormulaRuleAttributePageDto dto);
  20. }