IQuotaFormulaRuleService.java 631 B

123456789101112131415161718
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.dto.QuotaFormulaRulePageDto;
  5. import com.xjrsoft.module.student.entity.QuotaFormulaRule;
  6. import com.xjrsoft.module.student.vo.QuotaFormulaRulePageVo;
  7. /**
  8. * @title: 指标公式规则管理
  9. * @Author szs
  10. * @Date: 2024-01-29
  11. * @Version 1.0
  12. */
  13. public interface IQuotaFormulaRuleService extends MPJBaseService<QuotaFormulaRule> {
  14. Page<QuotaFormulaRulePageVo> getPage(Page<QuotaFormulaRulePageDto> page, QuotaFormulaRulePageDto dto);
  15. }