IBaseStudentBehaviorClassRelationService.java 560 B

123456789101112131415161718192021
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.xjrsoft.module.student.entity.BaseStudentAssessmentClassRelation;
  4. import com.xjrsoft.module.student.entity.BaseStudentBehaviorClassRelation;
  5. /**
  6. * @title: 学生操行-关联班级
  7. * @Author fanxp
  8. * @Date: 2023-11-16
  9. * @Version 1.0
  10. */
  11. public interface IBaseStudentBehaviorClassRelationService extends IService<BaseStudentBehaviorClassRelation> {
  12. /**
  13. * 数据缓存
  14. *
  15. * @return
  16. */
  17. Boolean dataCache(Long dataId);
  18. }