IBaseStudentAssessmentClassRelationService.java 651 B

123456789101112131415161718192021222324
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.entity.BaseStudentAssessmentClassRelation;
  5. import com.xjrsoft.module.student.entity.BaseStudentUser;
  6. import lombok.Data;
  7. import java.util.List;
  8. /**
  9. * @title: 学生班级巡查考核-关联班级
  10. * @Author fanxp
  11. * @Date: 2023-11-16
  12. * @Version 1.0
  13. */
  14. public interface IBaseStudentAssessmentClassRelationService extends IService<BaseStudentAssessmentClassRelation> {
  15. /**
  16. * 数据缓存
  17. *
  18. * @return
  19. */
  20. Boolean dataCache(Long dataId);
  21. }