From b612510f2479cc7fc04fbf9c4982742bee9e2ceb Mon Sep 17 00:00:00 2001
From: wang <3597712270@qq.com>
Date: 星期四, 18 四月 2024 16:55:46 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes

---
 hangzhoumesParent/common/servicebase/src/main/java/com/mes/pp/entity/OptimizeLayout.java |  106 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 106 insertions(+), 0 deletions(-)

diff --git a/hangzhoumesParent/common/servicebase/src/main/java/com/mes/pp/entity/OptimizeLayout.java b/hangzhoumesParent/common/servicebase/src/main/java/com/mes/pp/entity/OptimizeLayout.java
new file mode 100644
index 0000000..75e4d99
--- /dev/null
+++ b/hangzhoumesParent/common/servicebase/src/main/java/com/mes/pp/entity/OptimizeLayout.java
@@ -0,0 +1,106 @@
+package com.mes.pp.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * <p>
+ *
+ * </p>
+ *
+ * @author zhoush
+ * @since 2024-04-16
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+public class OptimizeLayout implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 宸ョ▼鍙�
+     */
+    private String projectNo;
+
+    /**
+     * 鍘熺墖ID
+     */
+    private Integer stockId;
+
+    private Double width;
+
+    private Double height;
+
+    private Double realwidth;
+
+    private Double realheight;
+
+    /**
+     * 鍒囪鐜�
+     */
+    private String usageRate;
+
+    /**
+     * 鐗╂枡缂栫爜
+     */
+    private String stockCode;
+
+    /**
+     * 涓婁慨杈�
+     */
+    private String upTrim;
+
+    /**
+     * 涓�
+     */
+    private String downTrim;
+
+    /**
+     * 宸�
+     */
+    private String leftTrim;
+
+    /**
+     * 鍙�
+     */
+    private String rightTrim;
+
+    /**
+     * 鏁伴噺
+     */
+    private Integer count;
+
+    /**
+     * 灏忕墖鏁�
+     */
+    private String glassCount;
+
+    /**
+     * 灏忕墖闈㈢Н
+     */
+    private String glassArea;
+
+    /**
+     * 鍒涘缓浜�
+     */
+    private Integer creater;
+
+    private Date createTime;
+
+    @TableField("intRemark")
+    private Integer intremark;
+
+    @TableField("strRemark")
+    private String strremark;
+
+
+}

--
Gitblit v1.8.0