|
@@ -0,0 +1,37 @@
|
|
1
|
+package com.xhkjedu.smarking.model.report.reportother;
|
|
2
|
+
|
|
3
|
+import com.xhkjedu.model.BaseBean;
|
|
4
|
+import lombok.Data;
|
|
5
|
+
|
|
6
|
+import javax.persistence.Id;
|
|
7
|
+import javax.persistence.Table;
|
|
8
|
+
|
|
9
|
+/**
|
|
10
|
+ * @Description 阅卷指标参数-报考参数表
|
|
11
|
+ * @Author auto
|
|
12
|
+ * @Date 2024-12-02
|
|
13
|
+ */
|
|
14
|
+@Data
|
|
15
|
+@Table(name = "msr_reportparam")
|
|
16
|
+public class MsrReportparam extends BaseBean {
|
|
17
|
+ @Id
|
|
18
|
+ //等级类参数ID
|
|
19
|
+ private Integer rpid;
|
|
20
|
+ //考试ID
|
|
21
|
+ private Integer examid;
|
|
22
|
+ //归属:allrate班级对比表综合率 gradescore分档分数线 nearline临界生群体分析 subjectshow学科考试表现
|
|
23
|
+ // keystu重点学生信息
|
|
24
|
+ private String rpbelong;
|
|
25
|
+ //类型
|
|
26
|
+ private Integer rptype;
|
|
27
|
+ //等级值
|
|
28
|
+ private Integer gradenum;
|
|
29
|
+ //科目ID
|
|
30
|
+ private String subjectid;
|
|
31
|
+ //数值json
|
|
32
|
+ private String szjson;
|
|
33
|
+ //操作人ID
|
|
34
|
+ private Integer handleid;
|
|
35
|
+ //操作时间
|
|
36
|
+ private Integer handletime;
|
|
37
|
+}
|