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 { Page getPage(Page page, QuotaFormulaRuleAttributePageDto dto); }