123456789101112131415161718192021 |
- package com.xjrsoft.module.student.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.xjrsoft.module.student.entity.BaseStudentAssessmentClassRelation;
- import com.xjrsoft.module.student.entity.BaseStudentBehaviorClassRelation;
- /**
- * @title: 学生操行-关联班级
- * @Author fanxp
- * @Date: 2023-11-16
- * @Version 1.0
- */
- public interface IBaseStudentBehaviorClassRelationService extends IService<BaseStudentBehaviorClassRelation> {
- /**
- * 数据缓存
- *
- * @return
- */
- Boolean dataCache(Long dataId);
- }
|