From dbcc9f8992c97b84aa6ae0a381c807ba6239ae2c Mon Sep 17 00:00:00 2001 From: huangjiayang <5265313@qq.com> Date: 星期四, 15 五月 2025 16:47:08 +0800 Subject: [PATCH] 【UPDATE】刷新BOM、库存、工艺路线数据缓存接口增加刷新钣金子单数据 --- aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlanTemp.java | 30 ++++++++++++++++-------------- 1 files changed, 16 insertions(+), 14 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 6199a2e..b928e75 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 @@ -1,11 +1,13 @@ package com.aps.core.domain; -import java.util.Date; +import com.aps.common.core.annotation.Excel; +import com.aps.common.core.web.domain.BaseEntity; import com.fasterxml.jackson.annotation.JsonFormat; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; -import com.aps.common.core.annotation.Excel; -import com.aps.common.core.web.domain.BaseEntity; + +import java.math.BigDecimal; +import java.util.Date; /** * 閽i噾璁″垝涓存椂琛ㄥ璞� aps_plate_plan_temp @@ -21,7 +23,7 @@ private String id; /** 涓昏鍒掑憳 */ - @Excel(name = "涓昏鍒掑憳") + @Excel(name = "涓昏鍒�") private String masterPlanner; /** 鍛ㄦ棩 */ @@ -75,11 +77,11 @@ /** 鐢熶骇鏁伴噺 */ @Excel(name = "鐢熶骇鏁伴噺") - private Long productionQuantity; + private BigDecimal productionQuantity; /** 鑹搧鏁伴噺 */ @Excel(name = "鑹搧鏁伴噺") - private Long goodProductsQuantity; + private BigDecimal goodProductsQuantity; /** 宸ュ簭鍙� */ @Excel(name = "宸ュ簭鍙�") @@ -121,7 +123,7 @@ /** 鏄惁鎸傝捣 */ @Excel(name = "鏄惁鎸傝捣") - private Integer isSuspended; + private String isSuspended; /** 澶栧崗鏍囪瘑 */ @Excel(name = "澶栧崗鏍囪瘑") @@ -165,7 +167,7 @@ private String batchNumber; /** 宸ュ巶 */ - @Excel(name = "宸ュ巶") +// @Excel(name = "宸ュ巶") private String plant; public void setId(String id) @@ -308,22 +310,22 @@ return versionNumber; } - public void setProductionQuantity(Long productionQuantity) + public void setProductionQuantity(BigDecimal productionQuantity) { this.productionQuantity = productionQuantity; } - public Long getProductionQuantity() + public BigDecimal getProductionQuantity() { return productionQuantity; } - public void setGoodProductsQuantity(Long goodProductsQuantity) + public void setGoodProductsQuantity(BigDecimal goodProductsQuantity) { this.goodProductsQuantity = goodProductsQuantity; } - public Long getGoodProductsQuantity() + public BigDecimal getGoodProductsQuantity() { return goodProductsQuantity; } @@ -418,12 +420,12 @@ return nextProcessDeparment; } - public void setIsSuspended(Integer isSuspended) + public void setIsSuspended(String isSuspended) { this.isSuspended = isSuspended; } - public Integer getIsSuspended() + public String getIsSuspended() { return isSuspended; } -- Gitblit v1.9.3