Browse Source

模版改为模板

ywx
雍文秀 2 months ago
parent
commit
84af7e3b71

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/controller/paper/MsPaperTemplateController.java View File

@@ -14,7 +14,7 @@ import javax.annotation.Resource;
14 14
 import java.util.List;
15 15
 
16 16
 /**
17
- * @Description 阅卷试卷模表相关操作
17
+ * @Description 阅卷试卷模表相关操作
18 18
  * @Author auto
19 19
  * @Date 2024-10-15
20 20
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/controller/paper/MsTemplateController.java View File

@@ -14,7 +14,7 @@ import javax.annotation.Resource;
14 14
 import java.util.List;
15 15
 
16 16
 /**
17
- * @Description 阅卷扫描模表相关操作
17
+ * @Description 阅卷扫描模表相关操作
18 18
  * @Author auto
19 19
  * @Date 2024-10-15
20 20
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/controller/paper/MsTemplateSubjectiveController.java View File

@@ -14,7 +14,7 @@ import javax.annotation.Resource;
14 14
 import java.util.List;
15 15
 
16 16
 /**
17
- * @Description 阅卷模主观题表相关操作
17
+ * @Description 阅卷模主观题表相关操作
18 18
  * @Author auto
19 19
  * @Date 2024-10-15
20 20
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/mapper/paper/MsPaperTemplateMapper.java View File

@@ -4,7 +4,7 @@ import com.xhkjedu.base.TkMapper;
4 4
 import com.xhkjedu.smarking.model.paper.MsPaperTemplate;
5 5
 
6 6
 /**
7
- * @Description 阅卷试卷模表 Mapper 接口
7
+ * @Description 阅卷试卷模表 Mapper 接口
8 8
  * @Author auto
9 9
  * @Date 2024-10-15
10 10
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/mapper/paper/MsTemplateMapper.java View File

@@ -4,7 +4,7 @@ import com.xhkjedu.base.TkMapper;
4 4
 import com.xhkjedu.smarking.model.paper.MsTemplate;
5 5
 
6 6
 /**
7
- * @Description 阅卷扫描模表 Mapper 接口
7
+ * @Description 阅卷扫描模表 Mapper 接口
8 8
  * @Author auto
9 9
  * @Date 2024-10-15
10 10
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/mapper/paper/MsTemplateSubjectiveMapper.java View File

@@ -4,7 +4,7 @@ import com.xhkjedu.base.TkMapper;
4 4
 import com.xhkjedu.smarking.model.paper.MsTemplateSubjective;
5 5
 
6 6
 /**
7
- * @Description 阅卷模主观题表 Mapper 接口
7
+ * @Description 阅卷模主观题表 Mapper 接口
8 8
  * @Author auto
9 9
  * @Date 2024-10-15
10 10
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/model/exam/MsSubject.java View File

@@ -35,7 +35,7 @@ public class MsSubject extends BaseBean {
35 35
     private Integer esstate;
36 36
     //试卷状态0未开始1已完成2退回
37 37
     private Integer pstate;
38
-    //试卷模设置状态0未设置1设置中2已设置
38
+    //试卷模设置状态0未设置1设置中2已设置
39 39
     private Integer ptstate;
40 40
     //阅卷状态0未开始1进行中2中止
41 41
     private Integer checkstate;

+ 3
- 3
smarking/src/main/java/com/xhkjedu/smarking/model/paper/MsPaperTemplate.java View File

@@ -7,7 +7,7 @@ import javax.persistence.Id;
7 7
 import javax.persistence.Table;
8 8
 
9 9
 /**
10
- * @Description 阅卷试卷模
10
+ * @Description 阅卷试卷模
11 11
  * @Author auto
12 12
  * @Date 2024-10-15
13 13
  */
@@ -15,10 +15,10 @@ import javax.persistence.Table;
15 15
 @Table(name = "ms_paper_template")
16 16
 public class MsPaperTemplate extends BaseBean {
17 17
     @Id
18
-    //阅卷试卷模ID
18
+    //阅卷试卷模ID
19 19
     private Integer mptid;
20 20
     //试卷ID
21 21
     private Integer mpid;
22
-    //模ID
22
+    //模ID
23 23
     private Integer mtid;
24 24
 }

+ 4
- 4
smarking/src/main/java/com/xhkjedu/smarking/model/paper/MsTemplate.java View File

@@ -7,7 +7,7 @@ import javax.persistence.Id;
7 7
 import javax.persistence.Table;
8 8
 
9 9
 /**
10
- * @Description 阅卷扫描模
10
+ * @Description 阅卷扫描模
11 11
  * @Author auto
12 12
  * @Date 2024-10-15
13 13
  */
@@ -15,9 +15,9 @@ import javax.persistence.Table;
15 15
 @Table(name = "ms_template")
16 16
 public class MsTemplate extends BaseBean {
17 17
     @Id
18
-    //阅卷扫描模ID
18
+    //阅卷扫描模ID
19 19
     private Integer mtid;
20
-    //模尺寸1A3 2A4
20
+    //模尺寸1A3 2A4
21 21
     private Integer tsize;
22 22
     //正面图片
23 23
     private String tfront;
@@ -45,7 +45,7 @@ public class MsTemplate extends BaseBean {
45 45
     private String cardcoor;
46 46
     //当前步骤1模块信息 2图片水平定位 3定位区选择 4选择考号区 5选择客观题区 6选择缺考区 7选择违纪区 8完成
47 47
     private Integer currstep;
48
-    //模状态0未提交1已提交
48
+    //模状态0未提交1已提交
49 49
     private Integer tstate;
50 50
     //创建人ID
51 51
     private Integer createid;

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/model/paper/MsTemplateObjective.java View File

@@ -17,7 +17,7 @@ public class MsTemplateObjective extends BaseBean {
17 17
     @Id
18 18
     //阅卷模块客观题定位区ID
19 19
     private Integer mtoid;
20
-    //模ID
20
+    //模ID
21 21
     private Integer mtid;
22 22
     //定位区坐标
23 23
     private String localcoor;

+ 3
- 3
smarking/src/main/java/com/xhkjedu/smarking/model/paper/MsTemplateSubjective.java View File

@@ -7,7 +7,7 @@ import javax.persistence.Id;
7 7
 import javax.persistence.Table;
8 8
 
9 9
 /**
10
- * @Description 阅卷模主观题表
10
+ * @Description 阅卷模主观题表
11 11
  * @Author auto
12 12
  * @Date 2024-10-15
13 13
  */
@@ -15,9 +15,9 @@ import javax.persistence.Table;
15 15
 @Table(name = "ms_template_subjective")
16 16
 public class MsTemplateSubjective extends BaseBean {
17 17
     @Id
18
-    //阅卷模主观题ID
18
+    //阅卷模主观题ID
19 19
     private Integer mtsid;
20
-    //模ID
20
+    //模ID
21 21
     private Integer mtid;
22 22
     //题块ID
23 23
     private Integer mpblockid;

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/service/paper/MsPaperTemplateService.java View File

@@ -8,7 +8,7 @@ import javax.annotation.Resource;
8 8
 import java.util.List;
9 9
 
10 10
 /**
11
- * @Description 阅卷试卷模表 服务实现类
11
+ * @Description 阅卷试卷模表 服务实现类
12 12
  * @Author auto
13 13
  * @Date 2024-10-15
14 14
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/service/paper/MsTemplateService.java View File

@@ -8,7 +8,7 @@ import javax.annotation.Resource;
8 8
 import java.util.List;
9 9
 
10 10
 /**
11
- * @Description 阅卷扫描模表 服务实现类
11
+ * @Description 阅卷扫描模表 服务实现类
12 12
  * @Author auto
13 13
  * @Date 2024-10-15
14 14
  */

+ 1
- 1
smarking/src/main/java/com/xhkjedu/smarking/service/paper/MsTemplateSubjectiveService.java View File

@@ -8,7 +8,7 @@ import javax.annotation.Resource;
8 8
 import java.util.List;
9 9
 
10 10
 /**
11
- * @Description 阅卷模主观题表 服务实现类
11
+ * @Description 阅卷模主观题表 服务实现类
12 12
  * @Author auto
13 13
  * @Date 2024-10-15
14 14
  */

Loading…
Cancel
Save