QuotaFormulaRuleAttributeMapper.java 744 B

12345678910111213141516171819
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.student.dto.QuotaFormulaRuleAttributePageDto;
  5. import com.xjrsoft.module.student.entity.QuotaFormulaRuleAttribute;
  6. import com.xjrsoft.module.student.vo.QuotaFormulaRuleAttributePageVo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. /**
  9. * @title: 考核表单属性
  10. * @Author szs
  11. * @Date: 2024-01-29
  12. * @Version 1.0
  13. */
  14. @Mapper
  15. public interface QuotaFormulaRuleAttributeMapper extends MPJBaseMapper<QuotaFormulaRuleAttribute> {
  16. Page<QuotaFormulaRuleAttributePageVo> getPage(Page<QuotaFormulaRuleAttributePageDto> page, QuotaFormulaRuleAttributePageDto dto);
  17. }