|
|
@@ -27,23 +27,21 @@ public class LedgerExamScore extends BaseEntity {
|
|
27
|
27
|
@Excel(name = "部门名称")
|
|
28
|
28
|
private String deptName;
|
|
29
|
29
|
|
|
30
|
|
- @Excel(name = "队室/班组")
|
|
|
30
|
+ private Long deptId;
|
|
|
31
|
+
|
|
31
|
32
|
private String teamName;
|
|
32
|
33
|
|
|
33
|
|
- @Excel(name = "小组")
|
|
|
34
|
+ private Long teamId;
|
|
|
35
|
+
|
|
34
|
36
|
private String groupName;
|
|
35
|
37
|
|
|
36
|
|
- @Excel(name = "用户名称")
|
|
|
38
|
+ private Long groupId;
|
|
|
39
|
+
|
|
|
40
|
+ @Excel(name = "考试人员")
|
|
37
|
41
|
private String personName;
|
|
38
|
42
|
|
|
39
|
43
|
private Long personId;
|
|
40
|
44
|
|
|
41
|
|
- private Long deptId;
|
|
42
|
|
-
|
|
43
|
|
- private Long teamId;
|
|
44
|
|
-
|
|
45
|
|
- private Long groupId;
|
|
46
|
|
-
|
|
47
|
45
|
@Excel(name = "类别")
|
|
48
|
46
|
private String examCategory;
|
|
49
|
47
|
|
|
|
@@ -56,15 +54,6 @@ public class LedgerExamScore extends BaseEntity {
|
|
56
|
54
|
@Excel(name = "图像成绩")
|
|
57
|
55
|
private BigDecimal imageScore;
|
|
58
|
56
|
|
|
59
|
|
- @Excel(name = "分类")
|
|
60
|
|
- private String classification;
|
|
61
|
|
-
|
|
62
|
|
- @Excel(name = "队室教员")
|
|
63
|
|
- private String teamInstructor;
|
|
64
|
|
-
|
|
65
|
|
- @Excel(name = "备注")
|
|
66
|
|
- private String remark;
|
|
67
|
|
-
|
|
68
|
57
|
private String importBatch;
|
|
69
|
58
|
|
|
70
|
59
|
@Excel(name = "数据来源")
|
|
|
@@ -82,15 +71,27 @@ public class LedgerExamScore extends BaseEntity {
|
|
82
|
71
|
public String getDeptName() { return deptName; }
|
|
83
|
72
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
84
|
73
|
|
|
|
74
|
+ public Long getDeptId() { return deptId; }
|
|
|
75
|
+ public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
|
76
|
+
|
|
85
|
77
|
public String getTeamName() { return teamName; }
|
|
86
|
78
|
public void setTeamName(String teamName) { this.teamName = teamName; }
|
|
87
|
79
|
|
|
|
80
|
+ public Long getTeamId() { return teamId; }
|
|
|
81
|
+ public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
|
82
|
+
|
|
88
|
83
|
public String getGroupName() { return groupName; }
|
|
89
|
84
|
public void setGroupName(String groupName) { this.groupName = groupName; }
|
|
90
|
85
|
|
|
|
86
|
+ public Long getGroupId() { return groupId; }
|
|
|
87
|
+ public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
|
88
|
+
|
|
91
|
89
|
public String getPersonName() { return personName; }
|
|
92
|
90
|
public void setPersonName(String personName) { this.personName = personName; }
|
|
93
|
91
|
|
|
|
92
|
+ public Long getPersonId() { return personId; }
|
|
|
93
|
+ public void setPersonId(Long personId) { this.personId = personId; }
|
|
|
94
|
+
|
|
94
|
95
|
public String getExamCategory() { return examCategory; }
|
|
95
|
96
|
public void setExamCategory(String examCategory) { this.examCategory = examCategory; }
|
|
96
|
97
|
|
|
|
@@ -103,27 +104,6 @@ public class LedgerExamScore extends BaseEntity {
|
|
103
|
104
|
public BigDecimal getImageScore() { return imageScore; }
|
|
104
|
105
|
public void setImageScore(BigDecimal imageScore) { this.imageScore = imageScore; }
|
|
105
|
106
|
|
|
106
|
|
- public String getClassification() { return classification; }
|
|
107
|
|
- public void setClassification(String classification) { this.classification = classification; }
|
|
108
|
|
-
|
|
109
|
|
- public String getTeamInstructor() { return teamInstructor; }
|
|
110
|
|
- public void setTeamInstructor(String teamInstructor) { this.teamInstructor = teamInstructor; }
|
|
111
|
|
-
|
|
112
|
|
- public String getRemark() { return remark; }
|
|
113
|
|
- public void setRemark(String remark) { this.remark = remark; }
|
|
114
|
|
-
|
|
115
|
|
- public Long getPersonId() { return personId; }
|
|
116
|
|
- public void setPersonId(Long personId) { this.personId = personId; }
|
|
117
|
|
-
|
|
118
|
|
- public Long getDeptId() { return deptId; }
|
|
119
|
|
- public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
120
|
|
-
|
|
121
|
|
- public Long getTeamId() { return teamId; }
|
|
122
|
|
- public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
123
|
|
-
|
|
124
|
|
- public Long getGroupId() { return groupId; }
|
|
125
|
|
- public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
126
|
|
-
|
|
127
|
107
|
public String getImportBatch() { return importBatch; }
|
|
128
|
108
|
public void setImportBatch(String importBatch) { this.importBatch = importBatch; }
|
|
129
|
109
|
|
|
|
@@ -132,4 +112,4 @@ public class LedgerExamScore extends BaseEntity {
|
|
132
|
112
|
|
|
133
|
113
|
public String getSyncFlag() { return syncFlag; }
|
|
134
|
114
|
public void setSyncFlag(String syncFlag) { this.syncFlag = syncFlag; }
|
|
135
|
|
-}
|
|
|
115
|
+}
|