From 607b15cde6515d18de64a40e17c5aef7fcf24bcb Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期三, 12 六月 2024 17:51:30 +0800
Subject: [PATCH] fix:成绩管理
---
src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java | 54 ++++++++++++++++++++++++------------------------------
1 files changed, 24 insertions(+), 30 deletions(-)
diff --git a/src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java b/src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java
index 8279fd2..a5436cb 100644
--- a/src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java
+++ b/src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java
@@ -3,80 +3,74 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.jxkg.domain.base.AbsEntity;
-import io.swagger.models.auth.In;
+import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
+
/**
- * 闅忔満璇曞嵎妯℃澘琛�
- * */
+ * 闅忔満璇曞嵎妯℃澘
+ *
+ * @author flq
+ * @since 2024-06-05
+ */
@Data
@TableName("t_exam_template")
public class ExamTemplate extends AbsEntity {
- /**
- * 璇曞嵎id
- * */
+
+ private static final long serialVersionUID = 1L;
+
@TableField("exam_paper_id")
+ /** paperId */
private Integer examPaperId;
- /**
- * 鍗曢�夐鏁伴噺
- * */
@TableField("single_choice")
+ /** 鍗曢�夐鏁伴噺 */
private Integer singleChoice;
- /**
- * 澶氶�夐鏁伴噺
- * */
@TableField("multiple_choice")
+ /** 澶氶�夐鏁伴噺 */
private Integer multipleChoice;
- /**
- * 濉┖棰樻暟閲�
- * */
@TableField("gap_filling")
+ /** 濉┖棰樻暟閲� */
private Integer gapFilling;
- /**
- * 鍒ゆ柇棰樻暟閲�
- * */
@TableField("true_false")
+ /** 鍒ゆ柇鏁伴噺 */
private Integer trueFalse;
- /**
- * 绠�绛旈鏁伴噺
- * */
@TableField("short_answer")
+ /** 绠�绛旈鏁伴噺 */
private Integer shortAnswer;
- /**
- * 璁$畻棰樻暟閲�
- * */
@TableField("calculation")
+ /** 璁$畻棰樻暟閲� */
private Integer calculation;
- /** 鍗曢�夋瘡棰樺垎鏁� */
@TableField("single_score")
+ /** 鍗曢�夋瘡棰樺垎鏁� */
private BigDecimal singleScore;
- /** 澶氶�夋瘡棰樺垎鏁� */
@TableField("multiple_score")
+ /** 澶氶�夋瘡棰樺垎鏁� */
private BigDecimal multipleScore;
- /** 濉┖姣忛鍒嗘暟 */
@TableField("gap_score")
+ /** 濉┖姣忛鍒嗘暟 */
private BigDecimal gapScore;
+ @TableField("true_false_score")
/** 鍒ゆ柇姣忛鍒嗘暟 */
- @TableField("trueFalse_score")
private BigDecimal trueFalseScore;
+ @TableField("short_answer_score")
/** 绠�绛旀瘡棰樺垎鏁� */
- @TableField("shortAnswer_score")
private BigDecimal shortAnswerScore;
- /** 璁$畻姣忛鍒嗘暟 */
@TableField("calculation_score")
+ /** 璁$畻姣忛鍒嗘暟 */
private BigDecimal calculationScore;
+
}
--
Gitblit v1.8.0