| 12345678910111213141516171819 |
- package com.xjrsoft.module.student.mapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.student.dto.QuotaFormulaRuleAttributePageDto;
- import com.xjrsoft.module.student.entity.QuotaFormulaRuleAttribute;
- import com.xjrsoft.module.student.vo.QuotaFormulaRuleAttributePageVo;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 考核表单属性
- * @Author szs
- * @Date: 2024-01-29
- * @Version 1.0
- */
- @Mapper
- public interface QuotaFormulaRuleAttributeMapper extends MPJBaseMapper<QuotaFormulaRuleAttribute> {
- Page<QuotaFormulaRuleAttributePageVo> getPage(Page<QuotaFormulaRuleAttributePageDto> page, QuotaFormulaRuleAttributePageDto dto);
- }
|