From e0699feb382ad3c01040f135f53698ac5c6ec84e Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期五, 19 四月 2024 10:42:24 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/glassinfo/entity/UpPattenUsage.java | 66 +++++++++++++++++++++++++++++++++ 1 files changed, 66 insertions(+), 0 deletions(-) diff --git a/hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/glassinfo/entity/UpPattenUsage.java b/hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/glassinfo/entity/UpPattenUsage.java new file mode 100644 index 0000000..279f93b --- /dev/null +++ b/hangzhoumesParent/moduleService/LoadGlassModule/src/main/java/com/mes/glassinfo/entity/UpPattenUsage.java @@ -0,0 +1,66 @@ +package com.mes.glassinfo.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +/** + * <p> + * + * </p> + * + * @author zhoush + * @since 2024-04-07 + */ +@Data +@EqualsAndHashCode(callSuper = false) +public class UpPattenUsage implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 鍘熺墖浣跨敤鎯呭喌琛╥d + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 宸ョ▼鍙� + */ + private Integer engineeringId; + + /** + * 鑶滅郴id + */ + private Integer filmsId; + + /** + * 瀹� + */ + private Double width; + + /** + * 楂� + */ + private Double height; + + /** + * 鍘氬害 + */ + private Double thickness; + + /** + * 鍘熺墖鐗堝浘鐗囧簭 + */ + private Integer layoutSequence; + + /** + * 鐘舵�� + */ + private Integer state; + + +} -- Gitblit v1.8.0