From 4403a428edc18482c5aa561e603b26ebe13d328f Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 02 四月 2024 18:27:02 +0800 Subject: [PATCH] 部门端登录、基础数据导入优化、得分计算优化 --- ruoyi-system/src/main/java/com/ruoyi/system/domain/TbScore.java | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbScore.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbScore.java index 21aae3c..ff3fb99 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbScore.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbScore.java @@ -7,7 +7,7 @@ import lombok.EqualsAndHashCode; import java.io.Serializable; -import java.time.LocalDateTime; +import java.util.Date; /** * <p> @@ -27,15 +27,15 @@ @ApiModelProperty(value = "得分id") @TableId(value = "id", type = IdType.AUTO) - private Integer id; + private Long id; @ApiModelProperty(value = "计算类型id") @TableField("basic_data_config_id") - private Integer basicDataConfigId; + private Long basicDataConfigId; @ApiModelProperty(value = "所属基础数据id") @TableField("basic_data_id") - private Integer basicDataId; + private Long basicDataId; @ApiModelProperty(value = "得分") @TableField("score") @@ -47,20 +47,20 @@ private String delFlag; @ApiModelProperty(value = "创建者") - @TableField("create_by") + @TableField(value = "create_by", fill = FieldFill.INSERT) private String createBy; @ApiModelProperty(value = "创建时间") @TableField(value = "create_time", fill = FieldFill.INSERT) - private LocalDateTime createTime; + private Date createTime; @ApiModelProperty(value = "更新者") - @TableField("update_by") + @TableField(value = "update_by", fill = FieldFill.INSERT_UPDATE) private String updateBy; @ApiModelProperty(value = "更新时间") @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE) - private LocalDateTime updateTime; + private Date updateTime; } -- Gitblit v1.7.1