mitao
2024-04-03 321d507a5670cb36c1550445c4795a76c9d7d226
ruoyi-system/src/main/java/com/ruoyi/system/domain/TbBasicData.java
@@ -8,7 +8,7 @@
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
/**
 * <p>
@@ -26,9 +26,9 @@
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "分类id")
    @ApiModelProperty(value = "id")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    private Long id;
    @ApiModelProperty(value = "季度")
    @TableField("quarter")
@@ -60,20 +60,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;
}