From 71d838e032d13a46a07917f5606862496220ea74 Mon Sep 17 00:00:00 2001
From: zyx <zyx123456>
Date: 星期一, 08 一月 2024 08:35:35 +0800
Subject: [PATCH] # 入库拣货功能添加

---
 src/main/java/com/zy/asrs/entity/Pla.java |   60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 59 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/Pla.java b/src/main/java/com/zy/asrs/entity/Pla.java
index 17e4a38..e55fe3e 100644
--- a/src/main/java/com/zy/asrs/entity/Pla.java
+++ b/src/main/java/com/zy/asrs/entity/Pla.java
@@ -1,5 +1,6 @@
 package com.zy.asrs.entity;
 
+import com.baomidou.mybatisplus.annotations.TableField;
 import com.baomidou.mybatisplus.annotations.TableId;
 import com.baomidou.mybatisplus.annotations.TableName;
 import com.baomidou.mybatisplus.enums.IdType;
@@ -18,96 +19,153 @@
 
     //鍏ュ簱鏃堕棿
     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @TableField("pakin_time")
     private String pakinTime;
 
     //鎵瑰彿
+    @TableField("batch")
     private String batch;
 
     //鍖呰鍙�
+    @TableField("package_no")
     private String packageNo;
 
     //鐗屽彿
+    @TableField("brand")
     private String brand;
 
     //閲嶉噺
+    @TableField("weight")
     private Double weight;
 
     //杞﹂棿
+    @TableField("workshop")
     private String workshop;
 
     //鐢熶骇绾�
+    @TableField("line")
     private String line;
 
     //鍖呰绫诲瀷
+    @TableField("package_type")
     private String packageType;
 
     //鎵樼洏绫诲瀷
+    @TableField("zpallet_type")
     private String zpalletType;
 
     //缂犺啘
+    @TableField("film_wrap")
     private String filmWrap;
 
     //鐔旀寚
+    @TableField("finger_melting")
     private Double fingerMelting;
 
     //鐔旂偣
+    @TableField("fusing_point")
     private Double fusingPoint;
 
     //鎸ュ彂浠�1
+    @TableField("vadf1")
     private Double vadf1;
 
     //鎸ュ彂浠�2
+    @TableField("vadf2")
     private Double vadf2;
 
     //榛勫害
+    @TableField("yellowness")
     private Double yellowness;
 
     //涓嶉�忔槑搴�
+    @TableField("opacity")
     private Double opacity;
 
     //姘村垎
+    @TableField("water")
     private Double water;
 
     //L鍊�
+    @TableField("l")
     private Double l;
 
     //a鍊�
+    @TableField("a")
     private Double a;
 
     //b鍊�
+    @TableField("b")
     private Double b;
 
     //濉厖
+    @TableField("fill_in")
     private Double fillIn;
 
     //璐ㄩ噺鐘舵��
+    @TableField("mass_state")
     private String massState;
 
     //璐ㄩ噺闂
+    @TableField("problem")
     private String problem;
 
     //浠撳簱
+    @TableField("stash")
     private String stash;
 
     //搴撲綅
+    @TableField("loc_no")
     private String locNo;
 
     //鍓╀綑閲嶉噺
+    @TableField("weight_anfme")
     private Double weightAnfme = 0.0;
-    //鍓╀綑閲嶉噺
+    //寰呭嚭搴撴暟閲�
+    @TableField("qty_anfme")
     private Double qtyAnfme = 0.0;
 
     //鐘舵��
+    @TableField("status")
     private String status;
 
     //姝ラ
+    @TableField("step")
     private int step;
 
+    @TableField("create_time")
     private Date createTime;
 
+    @TableField("modify_time")
     private Date modifyTime;
 
+    @TableField("create_user")
     private String createUser;
 
+    @TableField("modify_user")
     private String modifyUser;
+
+    @TableField("order_no")
+    private String orderNo;
+
+    @TableField("pakout_time")
+    private String pakoutTime;
+
+    @TableField("order_weight")
+    private Double orderWeight;
+
+    @TableField("handler_by")
+    private String handlerBy;
+
+    @TableField("transfer")
+    private String transfer;
+
+    @TableField("customer")
+    private String customer;
+
+    @TableField("allocate")
+    private String allocate;
+
+    @TableField("memo")
+    private String memo;
 }

--
Gitblit v1.9.1