mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2024-12-26 01:22:54 +08:00
删除文件 skyeye-school/school-exam/src/main/java/com/skyeye/exam/examSurveyClass
This commit is contained in:
parent
7413c25ef1
commit
ec3648e2a5
5 changed files with 0 additions and 118 deletions
|
@ -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 {
|
||||
|
||||
|
||||
}
|
|
@ -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<ExamSurveyClass> {
|
||||
}
|
|
@ -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;
|
||||
}
|
|
@ -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<ExamSurveyClass> {
|
||||
|
||||
}
|
|
@ -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<ExamSurveyClassDao, ExamSurveyClass> implements ExamSurveyClassService {
|
||||
|
||||
|
||||
}
|
Loading…
Reference in a new issue