From 27478d0e43742dfb8dffe445ff62a6fb824e36c0 Mon Sep 17 00:00:00 2001 From: huangjiayang <5265313@qq.com> Date: 星期四, 17 四月 2025 15:46:58 +0800 Subject: [PATCH] 【ADD】查询U9接口获取工单工序数据 --- aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java | 28 ++++++++++------------------ 1 files changed, 10 insertions(+), 18 deletions(-) diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java index 731e7df..c57d5bf 100644 --- a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java +++ b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java @@ -75,11 +75,11 @@ /** 鐢熶骇鏁伴噺 */ @Excel(name = "鐢熶骇鏁伴噺") - private Long productionQuantity; + private Integer productionQuantity; /** 鑹搧鏁伴噺 */ @Excel(name = "鑹搧鏁伴噺") - private Long goodProductsQuantity; + private Integer goodProductsQuantity; /** 宸ュ簭鍙� */ @Excel(name = "宸ュ簭鍙�") @@ -120,11 +120,9 @@ private String nextProcessDeparment; /** 鏄惁鎸傝捣 */ - private Integer isSuspended; - - /** 鏄惁鎸傝捣 */ @Excel(name = "鏄惁鎸傝捣") - private String isSuspendedTxt; + private String isSuspended; + /** 澶栧崗鏍囪瘑 */ @Excel(name = "澶栧崗鏍囪瘑") private String isOutsourcing; @@ -310,22 +308,22 @@ return versionNumber; } - public void setProductionQuantity(Long productionQuantity) + public void setProductionQuantity(Integer productionQuantity) { this.productionQuantity = productionQuantity; } - public Long getProductionQuantity() + public Integer getProductionQuantity() { return productionQuantity; } - public void setGoodProductsQuantity(Long goodProductsQuantity) + public void setGoodProductsQuantity(Integer goodProductsQuantity) { this.goodProductsQuantity = goodProductsQuantity; } - public Long getGoodProductsQuantity() + public Integer getGoodProductsQuantity() { return goodProductsQuantity; } @@ -420,12 +418,12 @@ return nextProcessDeparment; } - public void setIsSuspended(Integer isSuspended) + public void setIsSuspended(String isSuspended) { this.isSuspended = isSuspended; } - public Integer getIsSuspended() + public String getIsSuspended() { return isSuspended; } @@ -529,13 +527,7 @@ { return batchNumber; } - public String getIsSuspendedTxt() { - return isSuspendedTxt; - } - public void setIsSuspendedTxt(String isSuspendedTxt) { - this.isSuspendedTxt = isSuspendedTxt; - } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) -- Gitblit v1.9.3