From b90435111a9cb88a9302b6ac1f70c6d475452efe Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 11 三月 2024 11:28:53 +0800
Subject: [PATCH] 修改发货库存修改
---
north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java | 86 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 86 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java
new file mode 100644
index 0000000..bb4f0f4
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java
@@ -0,0 +1,86 @@
+package com.example.erp.entity.pp;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.example.erp.entity.sd.Order;
+import lombok.Data;
+
+import java.time.LocalDate;
+import java.time.LocalDateTime;
+
+@Data
+public class ReportingWork {
+ @TableId(type = IdType.AUTO)
+ //鑷id
+ private Integer id;
+ //鎶ュ伐缂栧彿
+ private String reportingWorkId;
+ //閿�鍞崟鍙�
+ private String orderId;
+ //鐢熶骇璁㈠崟鍙�
+ private String productionId;
+ //娴佺▼鍗″彿
+ private String processId;
+ //璁惧缂栧彿
+ private String deviceId;
+ //璁惧鍚嶇О
+ private String deviceName;
+ //涓婂伐搴�
+ private String previousProcess;
+ //涓婂伐搴忔暟閲�
+ private Integer previousProcessQuantity;
+ //鏈伐搴�
+ private String thisProcess;
+ //涓婂伐搴忔暟閲�
+ private Integer thisProcessQuantity;
+ //鏈伐搴忓畬宸ユ暟閲�
+ private Integer thisCompletedQuantity;
+ //鏈伐搴忔鐮存暟閲�
+ private Integer thisWornQuantity;
+ //涓嬪伐搴�
+ private String nextProcess;
+ //鐝
+ private String classes;
+ //鐝粍缂栧彿
+ private String teamsGroupsId;
+ //鐝粍鍚嶇О
+ private String teamsGroupsName;
+ //鎶ュ伐鐘舵��
+ private Integer reportingWorkState;
+ //瀹℃牳浜�
+ private String reviewed;
+ //瀹℃牳鐘舵��
+ private Integer reviewedState;
+ //澶囨敞
+ private String notes;
+ //璐ㄦ鍛�
+ private String qualityInspector;
+ //鍖呰鏂瑰紡
+ private String packagingMethod;
+ //鎶ュ伐鏃堕棿
+ private LocalDateTime reportingWorkTime;
+ //瀹℃牳鏃堕棿
+ private LocalDate examineTime;
+ //璐ㄦ鏃堕棿
+ private LocalDate qualityInsTime;
+ //寤虹珛鏃堕棿
+ private LocalDate createTime;
+ //淇敼鏃堕棿
+ private LocalDate updateTime;
+
+ //鍒涘缓鑰�
+ private String creatorId ;
+ private String creator ;
+
+
+ @TableField(select = false,exist= false)
+ private Order order;
+ //澶栭敭娴佺▼鍗¤〃
+ @TableField(select = false,exist= false)
+ private FlowCard flowCard;
+// @TableField(select = false,exist= false)
+// private ReportingWork reportingWork;
+ @TableField(select = false,exist= false)
+ private ReportingWorkDetail reportingWorkDetail;
+}
--
Gitblit v1.8.0