SmartSubjectManageService.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package com.template.services;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.template.model.evaluate.student.SmartSubjectManage;
  5. import com.template.model.result.PageUtils;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 平分项管理 服务类
  10. * </p>
  11. *
  12. * @author ceshi
  13. * @since 2024-01-08
  14. */
  15. public interface SmartSubjectManageService extends IService<SmartSubjectManage> {
  16. public int insertSmartSubjectManage(SmartSubjectManage sa);
  17. public int updateSmartSubjectManage(SmartSubjectManage sa);
  18. public PageUtils<SmartSubjectManage> queryPageSmartSubjectManage(int currentPage, int pageCount, QueryWrapper<SmartSubjectManage> queryWrapper);
  19. public int deleteSmartSubjectManageById(int id);
  20. public SmartSubjectManage getSmartSubjectManageById(int id);
  21. public List<SmartSubjectManage> getSmartSubjectManageList();
  22. public List<SmartSubjectManage> getSmartSubjectManageByKey(QueryWrapper<SmartSubjectManage> queryWrapper);
  23. public String getMaxTerm();
  24. }