zhanghl
2025-05-23 dec8951aae400e54f6ee83a8f95867dba9da8af1
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartRouteStat.java
@@ -7,6 +7,7 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
/**
 * 零件统计表对象 aps_part_route_stat
@@ -25,6 +26,8 @@
    @Excel(name = "工单号")
    private String workOrderNo;
    private String resourceGroupName;
    /** 工序号 */
    @Excel(name = "工序号")
    private BigDecimal roadProcessNumber;
@@ -35,19 +38,19 @@
    /** 生产数量 */
    @Excel(name = "生产数量")
    private Long productionQuantity;
    private BigDecimal productionQuantity;
    /** 标准工时 */
    @Excel(name = "标准工时")
    private Long standardTime;
    private BigDecimal standardTime;
    /** 工序总工时 */
    @Excel(name = "工序总工时")
    private Long processTotalTime;
    private BigDecimal processTotalTime;
    /** 计划开工日 */
    @Excel(name = "计划开工日")
    private LocalDateTime processPlanStartDay;
    private Date processPlanStartDay;
    /** 设计工时 */
    @Excel(name = "设计工时")
@@ -100,42 +103,42 @@
        return currentProcessNumber;
    }
    public void setProductionQuantity(Long productionQuantity)
    public void setProductionQuantity(BigDecimal productionQuantity)
    {
        this.productionQuantity = productionQuantity;
    }
    public Long getProductionQuantity()
    public BigDecimal getProductionQuantity()
    {
        return productionQuantity;
    }
    public void setStandardTime(Long standardTime)
    public void setStandardTime(BigDecimal standardTime)
    {
        this.standardTime = standardTime;
    }
    public Long getStandardTime()
    public BigDecimal getStandardTime()
    {
        return standardTime;
    }
    public void setProcessTotalTime(Long processTotalTime)
    public void setProcessTotalTime(BigDecimal processTotalTime)
    {
        this.processTotalTime = processTotalTime;
    }
    public Long getProcessTotalTime()
    public BigDecimal getProcessTotalTime()
    {
        return processTotalTime;
    }
    public void setProcessPlanStartDay(LocalDateTime processPlanStartDay)
    public void setProcessPlanStartDay(Date processPlanStartDay)
    {
        this.processPlanStartDay = processPlanStartDay;
    }
    public LocalDateTime getProcessPlanStartDay()
    public Date getProcessPlanStartDay()
    {
        return processPlanStartDay;
    }
@@ -170,6 +173,14 @@
        return batchNumber;
    }
    public String getResourceGroupName() {
        return resourceGroupName;
    }
    public void setResourceGroupName(String resourceGroupName) {
        this.resourceGroupName = resourceGroupName;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)