dy
2025-04-23 1c15dbfcab5dd355f00e35a963adffe8ca135b4f
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlateProcessStat.java
@@ -41,15 +41,15 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Integer productionQuantity;
    private BigDecimal productionQuantity;
    /** 标准工时 */
    @Excel(name = "标准工时")
    private Integer standardTime;
    private BigDecimal standardTime;
    /** 工序总工时 */
    @Excel(name = "工序总工时")
    private Integer processTotalTime;
    private BigDecimal processTotalTime;
    /** 计划完成日 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@@ -147,32 +147,32 @@
        return currentProcessNumber;
    }
    public void setProductionQuantity(Integer productionQuantity)
    public void setProductionQuantity(BigDecimal productionQuantity)
    {
        this.productionQuantity = productionQuantity;
    }
    public Integer getProductionQuantity()
    public BigDecimal getProductionQuantity()
    {
        return productionQuantity;
    }
    public void setStandardTime(Integer standardTime)
    public void setStandardTime(BigDecimal standardTime)
    {
        this.standardTime = standardTime;
    }
    public Integer getStandardTime()
    public BigDecimal getStandardTime()
    {
        return standardTime;
    }
    public void setProcessTotalTime(Integer processTotalTime)
    public void setProcessTotalTime(BigDecimal processTotalTime)
    {
        this.processTotalTime = processTotalTime;
    }
    public Integer getProcessTotalTime()
    public BigDecimal getProcessTotalTime()
    {
        return processTotalTime;
    }