From 6cfcb307f01b9550b6cd67321f2c1db345b4da19 Mon Sep 17 00:00:00 2001
From: zhangc <zc@123>
Date: 星期一, 13 一月 2025 16:07:21 +0800
Subject: [PATCH] 优化自动移库逻辑及调拨信息上报

---
 src/main/java/com/zy/common/model/DetlDto.java |   42 +++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 41 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/zy/common/model/DetlDto.java b/src/main/java/com/zy/common/model/DetlDto.java
index 40c59e0..0ebe17e 100644
--- a/src/main/java/com/zy/common/model/DetlDto.java
+++ b/src/main/java/com/zy/common/model/DetlDto.java
@@ -30,12 +30,26 @@
     //閿�鍞鍗曡鍙�
     private String isoseq;
 
+    private String cFree1;
+
+    // 搴撲綅绫诲瀷锛� 1銆佷唬鍖呰鎴愬搧锛�2銆佸師鏉愭枡锛�3銆佺澹�
+    private Integer locType;
+
+    // 宸ュ簭鐘舵�� 1锛氬緟鍔犲伐锛�2锛氬凡鍔犲伐锛�3锛氭棤闇�鍔犲伐
+    private Integer processSts;
+
     public DetlDto() {
     }
 
     public DetlDto(String matnr, Double anfme) {
         this.matnr = matnr;
         this.anfme = anfme;
+    }
+
+    public DetlDto(String matnr, Double anfme,Integer processSts) {
+        this.matnr = matnr;
+        this.anfme = anfme;
+        this.processSts = processSts;
     }
 
     public DetlDto(String matnr, String batch) {
@@ -49,12 +63,33 @@
         this.anfme = anfme;
     }
 
-    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq) {
+    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq, String containerCode) {
         this.matnr = matnr;
         this.batch = batch;
         this.anfme = anfme;
         this.csocode = csocode;
         this.isoseq = isoseq;
+        this.containerCode = containerCode;
+    }
+    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq, String containerCode, Integer locType) {
+        this.matnr = matnr;
+        this.batch = batch;
+        this.anfme = anfme;
+        this.csocode = csocode;
+        this.isoseq = isoseq;
+        this.containerCode = containerCode;
+        this.locType = locType;
+    }
+
+    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq, String containerCode, Integer locType, Integer processSts) {
+        this.matnr = matnr;
+        this.batch = batch;
+        this.anfme = anfme;
+        this.csocode = csocode;
+        this.isoseq = isoseq;
+        this.containerCode = containerCode;
+        this.locType = locType;
+        this.processSts = processSts;
     }
 
     public DetlDto(String orderNo, String matnr, String batch, Double anfme, String csocode, String isoseq) {
@@ -112,4 +147,9 @@
         return null;
     }
 
+    public static void main(String[] args) {
+        boolean a = Cools.eq("a", null);
+        System.out.println(a);
+    }
+
 }

--
Gitblit v1.9.1