From d8060afba15f67e443bb2f89410313905bdc7ebe Mon Sep 17 00:00:00 2001
From: pjb <pjb123456>
Date: 星期一, 23 六月 2025 08:58:13 +0800
Subject: [PATCH] 米多泉泉州wcs功能完善

---
 src/main/java/com/zy/core/model/command/LedCommand.java |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/zy/core/model/command/LedCommand.java b/src/main/java/com/zy/core/model/command/LedCommand.java
index 536a9c0..b1eb05e 100644
--- a/src/main/java/com/zy/core/model/command/LedCommand.java
+++ b/src/main/java/com/zy/core/model/command/LedCommand.java
@@ -15,9 +15,40 @@
 
     private String title;
 
+    @Override
+    public String toString() {
+        return "LedCommand{" +
+                "title='" + title + '\'' +
+                ", workNo=" + workNo +
+                ", staNo=" + staNo +
+                ", count=" + count +
+                ", error=" + error +
+                ", orderNo=" + orderNo +
+                ", cstmrName=" + cstmrName +
+                ", finish=" + finish +
+                ", sourceStaNo=" + sourceStaNo +
+                ", locNo='" + locNo + '\'' +
+                ", sourceLocNo='" + sourceLocNo + '\'' +
+                ", matDtos=" + matDtos +
+                ", emptyMk=" + emptyMk +
+                ", ioType=" + ioType +
+                ", barcode='" + barcode + '\'' +
+                '}';
+    }
+
     private Integer workNo;
 
     private Integer staNo;
+
+    private Integer count;
+
+    private Integer finish;
+
+    private String error;
+
+    private String orderNo;
+
+    private String cstmrName;
 
     private Integer sourceStaNo;
 
@@ -29,4 +60,20 @@
 
     private boolean emptyMk = false;
 
+    private Integer ioType;
+    private String barcode;
+
+    public static void main(String[] args) {
+        LedCommand ledCommand = new LedCommand();
+        ledCommand.setTitle("鍏ㄦ澘鍑哄簱");
+        ledCommand.setBarcode("80000001");
+        ledCommand.setSourceLocNo("0100101");
+        ledCommand.setStaNo(100);
+        ledCommand.setWorkNo(7001);
+        List<MatDto> matDtos = new ArrayList<>();
+        MatDto matDto = new MatDto("0205040001","K44132-09-0724","PE","20240724",",HD-233L",70,2816,53908.56626);
+        matDtos.add(matDto);
+        ledCommand.setMatDtos(matDtos);
+        System.out.println(ledCommand);
+    }
 }

--
Gitblit v1.9.1