From 1da336624f8928ecc382fc92dd9ada56fd932481 Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期三, 26 六月 2024 08:10:38 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/common/model/DetlDto.java | 34 +++++++++++++++++++++++++++++++++-
1 files changed, 33 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..422e62e 100644
--- a/src/main/java/com/zy/common/model/DetlDto.java
+++ b/src/main/java/com/zy/common/model/DetlDto.java
@@ -30,6 +30,12 @@
//閿�鍞鍗曡鍙�
private String isoseq;
+ // 搴撲綅绫诲瀷锛� 1銆佷唬鍖呰鎴愬搧锛�2銆佸師鏉愭枡锛�3銆佺澹�
+ private Integer locType;
+
+ // 宸ュ簭鐘舵�� 1锛氬緟鍔犲伐锛�2锛氬凡鍔犲伐锛�3锛氭棤闇�鍔犲伐
+ private Integer processSts;
+
public DetlDto() {
}
@@ -49,12 +55,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 +139,9 @@
return null;
}
+ public static void main(String[] args) {
+ boolean a = Cools.eq("a", null);
+ System.out.println(a);
+ }
+
}
--
Gitblit v1.9.1