From c65db22f67af8018ae7105ea00d8743e42835e13 Mon Sep 17 00:00:00 2001 From: ZY <zc857179121@qq.com> Date: 星期六, 29 三月 2025 15:52:09 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/common/model/DetlDto.java | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 47 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..504cb0f 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,39 @@ this.anfme = anfme; } - public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq) { + public DetlDto(String matnr, String csocode, Integer processSts) { + this.matnr = matnr; + this.csocode = csocode; + this.processSts = processSts; + } + + 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 +153,9 @@ return null; } + public static void main(String[] args) { + boolean a = Cools.eq("a", null); + System.out.println(a); + } + } -- Gitblit v1.9.1