From ae366fa73d7fa3bc748973d341dd16f3735ce436 Mon Sep 17 00:00:00 2001 From: huangjiayang <5265313@qq.com> Date: 星期五, 25 四月 2025 23:07:48 +0800 Subject: [PATCH] 【ADD】增加气体管路产能统计导出接口 --- aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java | 41 ++++++++++++++++++++++++----------------- 1 files changed, 24 insertions(+), 17 deletions(-) diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java index b82b0d4..2e30c2f 100644 --- a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java +++ b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java @@ -1,19 +1,13 @@ package com.aps.core.domain; -import java.math.BigDecimal; -import java.util.Date; - -import com.aps.common.core.utils.uuid.IdUtils; -import com.aps.common.core.utils.uuid.UUID; +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 org.apache.poi.hpsf.Decimal; -import org.springframework.data.annotation.Id; -import javax.annotation.processing.Generated; +import java.math.BigDecimal; +import java.util.Date; /** * 闆朵欢璁″垝绠$悊瀵硅薄 aps_part_plan @@ -82,11 +76,11 @@ /** 鐢熶骇鏁伴噺 */ @Excel(name = "鐢熶骇鏁伴噺") - private Decimal productionQuantity; + private BigDecimal productionQuantity; /** 鑹搧鏁伴噺 */ @Excel(name = "鑹搧鏁伴噺") - private Decimal goodProductsQuantity; + private BigDecimal goodProductsQuantity; /** 宸ュ簭鍙� */ @Excel(name = "宸ュ簭鍙�") @@ -166,6 +160,10 @@ /** 椋庨櫓鏍囪瘑 */ @Excel(name = "椋庨櫓鏍囪瘑") private Integer hasRisk; + + /** 浣滀笟锛堝伐搴忓悕绉帮級 */ + @Excel(name = "浣滀笟") + private String stdOp; /** 宸ュ巶 */ // @Excel(name = "宸ュ巶") @@ -311,22 +309,22 @@ return versionNumber; } - public void setProductionQuantity(Decimal productionQuantity) + public void setProductionQuantity(BigDecimal productionQuantity) { this.productionQuantity = productionQuantity; } - public Decimal getProductionQuantity() + public BigDecimal getProductionQuantity() { return productionQuantity; } - public void setGoodProductsQuantity(Decimal goodProductsQuantity) + public void setGoodProductsQuantity(BigDecimal goodProductsQuantity) { this.goodProductsQuantity = goodProductsQuantity; } - public Decimal getGoodProductsQuantity() + public BigDecimal getGoodProductsQuantity() { return goodProductsQuantity; } @@ -521,6 +519,14 @@ return hasRisk; } + public void setStdOp(String stdOp) { + this.stdOp = stdOp; + } + + public String getStdOp() { + return stdOp; + } + @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) @@ -559,7 +565,8 @@ .append("isStockComplete", getIsStockComplete()) .append("hasTurnback", getHasTurnback()) .append("hasRisk", getHasRisk()) - .append("plant", getPlant()) + .append("plant", getPlant()) + .append("stdOp", getStdOp()) .toString(); } public String getPlant() { -- Gitblit v1.9.3