陈士柏 vor 2 Jahren
Ursprung
Commit
ad3f8b794a

+ 32 - 0
src/main/java/com/template/model/evaluate/SmartEvaluateTdetail.java

@@ -0,0 +1,32 @@
+package com.template.model.evaluate;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value="SmartEvaluateTdetail对象", description="")
+public class SmartEvaluateTdetail {
+
+    public Integer id;
+
+    @ApiModelProperty(value = "编号(学号)")
+    public String cardNo;
+
+    @ApiModelProperty(value = "评分项")
+    public String scoreItem;
+
+    @ApiModelProperty(value = "父级ID 为0表示是主项")
+    public String parentId;
+
+    @ApiModelProperty(value = "评分值")
+    public Double scoreNum;
+
+    @ApiModelProperty(value = "逻辑删除 未删除:0;删除:1")
+    public Integer deleted;
+
+}

+ 42 - 0
src/main/java/com/template/model/evaluate/SmartEvaluateTeacher.java

@@ -0,0 +1,42 @@
+package com.template.model.evaluate;
+
+import com.alibaba.fastjson.JSONObject;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value="SmartEvaluateTeacher对象", description="")
+public class SmartEvaluateTeacher {
+
+    public Integer id;
+
+    @ApiModelProperty(value = "编号(学号)")
+    public String cardNo;
+
+    @ApiModelProperty(value = "姓名")
+    public String name;
+
+    @ApiModelProperty(value = "学期")
+    public String term;
+
+    @ApiModelProperty(value = "学科")
+    public String subject;
+
+    @ApiModelProperty(value = "班级")
+    public String className;
+
+    @ApiModelProperty(value = "评分详情")
+    public JSONObject evaluateDetail;
+
+    @ApiModelProperty(value = "总分")
+    public Double totalScore;
+
+    @ApiModelProperty(value = "逻辑删除 未删除:0;删除:1")
+    public Integer deleted;
+
+}

+ 31 - 0
src/main/java/com/template/model/evaluate/SmartScoreManage.java

@@ -0,0 +1,31 @@
+package com.template.model.evaluate;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value="SmartScoreManage对象", description="")
+public class SmartScoreManage {
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer id;
+
+    @ApiModelProperty(value = "评分项")
+    public String scoreItem;
+
+    @ApiModelProperty(value = "父级ID 为0表示是主项")
+    public Integer parentId;
+
+    @ApiModelProperty(value = "评分值")
+    public Double scoreNum;
+
+    @ApiModelProperty(value = "逻辑删除 未删除:0;删除:1")
+    public Integer deleted;
+
+}