From b9b44b51b201e2f5a9a1f3665c7fb76b5690f9af Mon Sep 17 00:00:00 2001 From: wu <731351411@qq.com> Date: 星期一, 23 十二月 2024 16:13:08 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java | 32 ++++++++++++++++++++------------ 1 files changed, 20 insertions(+), 12 deletions(-) diff --git a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java index c007100..b1d148d 100644 --- a/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java +++ b/hangzhoumesParent/moduleService/CacheVerticalGlassModule/src/main/java/com/mes/edgglasstask/entity/EdgGlassTaskInfo.java @@ -1,5 +1,8 @@ package com.mes.edgglasstask.entity; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableLogic; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -21,11 +24,13 @@ @EqualsAndHashCode(callSuper = false) public class EdgGlassTaskInfo implements Serializable { + private static final long serialVersionUID = 1L; + /** * 纾ㄨ竟浠诲姟id */ - private static final long serialVersionUID = 1L; - + @TableId(value = "id", type = IdType.AUTO) + private Long id; /** * 鐜荤拑id */ @@ -50,28 +55,31 @@ @ApiModelProperty(value = "鍘氬害", position = 5) private Integer thickness; - /** - * 鐜荤拑绫诲瀷 - */ - @ApiModelProperty(value = "鐜荤拑绫诲瀷", position = 6) - private Integer glassType; /** * 鐘舵�� */ - @ApiModelProperty(value = "鐘舵��", position = 7) - private Integer status; + @ApiModelProperty(value = "鐘舵��", position = 6) + private Integer state; /** * 绾胯矾 */ - @ApiModelProperty(value = "绾胯矾", position = 8) + @ApiModelProperty(value = "绾胯矾", position = 7) private Integer line; /** * 绾胯矾 */ - @ApiModelProperty(value = "鏃堕棿", position = 9) - private Date time; + @ApiModelProperty(value = "寮�濮嬫椂闂�", position = 8) + private Date createTime; + /** + * 绾胯矾 + */ + @ApiModelProperty(value = "鏇存柊鏃堕棿", position = 9) + private Date updateTime; + + @TableLogic + private int deleted; } -- Gitblit v1.8.0