From 33308e16bbb153d9aac76fd703ec0f38ea7e344a Mon Sep 17 00:00:00 2001 From: wangfei <3597712270@qq.com> Date: 星期三, 09 十月 2024 15:47:59 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/entity/DownGlassInfo.java | 39 +++++++++++++++++++++++++++++++-------- 1 files changed, 31 insertions(+), 8 deletions(-) diff --git a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/entity/DownGlassInfo.java b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/entity/DownGlassInfo.java index 09e0a3a..55a4ee9 100644 --- a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/entity/DownGlassInfo.java +++ b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/entity/DownGlassInfo.java @@ -1,13 +1,13 @@ package com.mes.downglassinfo.entity; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import lombok.EqualsAndHashCode; -import org.springframework.data.annotation.Id; import org.springframework.stereotype.Component; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; import java.io.Serializable; +import java.util.Date; /** * <p> @@ -27,14 +27,28 @@ /** * 涓嬬墖鐜荤拑淇℃伅琛╥d */ - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) + @TableId(value = "id", type = IdType.AUTO) private Long id; + + /** + * 宸ヤ綅id + */ + private Integer workStationId; + + /** + * 宸ョ▼id + */ + private String engineerId; /** * 娴佺▼鍗″彿 */ private String flowCardId; + + /** + * 灞傚彿 + */ + private Integer layer; /** * 椤哄簭 @@ -44,17 +58,17 @@ /** * 瀹� */ - private Double width; + private double width; /** * 楂� */ - private Double height; + private double height; /** * 鍘氬害 */ - private Double thickness; + private double thickness; /** * 鑶滅郴 @@ -66,5 +80,14 @@ */ private String glassId; + /** + * 鍒涘缓鏃堕棿 + */ + private Date gmtCreate; + + /** + * 鐜荤拑绫诲瀷 + */ + private Integer glassType; } -- Gitblit v1.8.0