diff --git a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/controller/ExamSurveyClassController.java b/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/controller/ExamSurveyClassController.java deleted file mode 100644 index 49ef26dd..00000000 --- a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/controller/ExamSurveyClassController.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.skyeye.exam.examSurveyClass.controller; - -import com.skyeye.annotation.api.Api; -import org.springframework.web.bind.annotation.RestController; - -/** - * @ClassName: ExamSurveyClassController - * @Description: 试卷与班级关系表管理控制层 - * @author: skyeye云系列--lqy - * @date: 2024/7/16 11:01 - * @Copyright: 2024 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. - * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 - */ -@RestController -@Api(value = "试卷与班级关系表管理", tags = "试卷与班级关系表管理", modelName = "试卷与班级关系表管理") -public class ExamSurveyClassController { - - -} diff --git a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/dao/ExamSurveyClassDao.java b/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/dao/ExamSurveyClassDao.java deleted file mode 100644 index 313b0838..00000000 --- a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/dao/ExamSurveyClassDao.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.skyeye.exam.examSurveyClass.dao; - -import com.skyeye.eve.dao.SkyeyeBaseMapper; -import com.skyeye.exam.examSurveyClass.entity.ExamSurveyClass; - -/** - * @ClassName: ExamSurveyClassDao - * @Description: 试卷与班级关系表管理数据接口层 - * @author: skyeye云系列--lqy - * @date: 2024/7/16 11:01 - * @Copyright: 2024 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. - * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 - */ -public interface ExamSurveyClassDao extends SkyeyeBaseMapper { -} diff --git a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/entity/ExamSurveyClass.java b/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/entity/ExamSurveyClass.java deleted file mode 100644 index 9a12da8d..00000000 --- a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/entity/ExamSurveyClass.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.skyeye.exam.examSurveyClass.entity; - -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; -import com.skyeye.annotation.api.ApiModel; -import com.skyeye.annotation.api.ApiModelProperty; -import com.skyeye.annotation.cache.RedisCacheField; -import com.skyeye.common.entity.CommonInfo; -import com.skyeye.common.entity.features.BaseGeneralInfo; -import lombok.Data; - -/** - * @ClassName: ExamSurveyClass - * @Description: 试卷与班级关系表实体类 - * @author: skyeye云系列--lqy - * @date: 2024/7/16 11:01 - * @Copyright: 2024 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. - * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 - */ -@Data -@RedisCacheField(name = "Exam:class") -@TableName(value = "exam_survey_class") -@ApiModel("试卷与班级关系表实体类") -public class ExamSurveyClass extends CommonInfo { - - @TableId("id") - @ApiModelProperty(value = "主键id。为空时新增,不为空时编辑") - private String id; - - @TableField("class_id") - @ApiModelProperty(value = "班级id", required = "required") - private String classId; - - @TableField("exam_survey_id") - @ApiModelProperty(value = "试卷id", required = "required") - private String examSurveyId; -} \ No newline at end of file diff --git a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/service/ExamSurveyClassService.java b/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/service/ExamSurveyClassService.java deleted file mode 100644 index fcc88a98..00000000 --- a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/service/ExamSurveyClassService.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.skyeye.exam.examSurveyClass.service; - -import com.skyeye.base.business.service.SkyeyeBusinessService; -import com.skyeye.common.object.InputObject; -import com.skyeye.common.object.OutputObject; -import com.skyeye.exam.examSurveyClass.entity.ExamSurveyClass; - -/** - * @ClassName: ExamSurveyClassService - * @Description: 试卷与班级关系表管理服务接口层 - * @author: skyeye云系列--lqy - * @date: 2024/7/19 11:01 - * @Copyright: 2024 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. - * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 - */ -public interface ExamSurveyClassService extends SkyeyeBusinessService { - -} diff --git a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/service/impl/ExamSurveyClassServiceImpl.java b/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/service/impl/ExamSurveyClassServiceImpl.java deleted file mode 100644 index 2937bbf5..00000000 --- a/skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass/service/impl/ExamSurveyClassServiceImpl.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.skyeye.exam.examSurveyClass.service.impl; - -import com.skyeye.annotation.service.SkyeyeService; -import com.skyeye.base.business.service.impl.SkyeyeBusinessServiceImpl; -import com.skyeye.common.object.InputObject; -import com.skyeye.common.object.OutputObject; -import com.skyeye.exam.examSurveyAnswer.dao.ExamSurveyAnswerDao; -import com.skyeye.exam.examSurveyAnswer.entity.ExamSurveyAnswer; -import com.skyeye.exam.examSurveyAnswer.service.ExamSurveyAnswerService; -import com.skyeye.exam.examSurveyClass.dao.ExamSurveyClassDao; -import com.skyeye.exam.examSurveyClass.entity.ExamSurveyClass; -import com.skyeye.exam.examSurveyClass.service.ExamSurveyClassService; -import org.springframework.stereotype.Service; - -/** - * @ClassName: ExamSurveyClassServiceImpl - * @Description: 试卷与班级关系表管理服务层 - * @author: skyeye云系列--lqy - * @date: 2024/7/19 11:01 - * @Copyright: 2024 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. - * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 - */ -@Service -@SkyeyeService(name = "试卷与班级关系表管理", groupName = "试卷与班级关系表管理") -public class ExamSurveyClassServiceImpl extends SkyeyeBusinessServiceImpl implements ExamSurveyClassService { - - -}