huangjiayang
2025-05-07 becb9bd23be9b8776eb51c0f81a0a41fb662dd1f
aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPlatePlan.java
@@ -178,9 +178,42 @@
    @Excel(name = "下一工序名称")
    private String nextOpName;
    /** 工单创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "工单创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date orderCreateTime;
    /** 生产基地 */
    @Excel(name = "生产基地")
    private String productionBase;
    /** 未匹配的生产数量*/
    private BigDecimal unmatchedQuantity;
    public Date getOrderCreateTime() {
        return orderCreateTime;
    }
    public void setOrderCreateTime(Date orderCreateTime) {
        this.orderCreateTime = orderCreateTime;
    }
    public String getProductionBase() {
        return productionBase;
    }
    public void setProductionBase(String productionBase) {
        this.productionBase = productionBase;
    }
    public BigDecimal getUnmatchedQuantity() {
        return unmatchedQuantity;
    }
    public void setUnmatchedQuantity(BigDecimal unmatchedQuantity) {
        this.unmatchedQuantity = unmatchedQuantity;
    }
    public String getOpStatus() {
        return opStatus;
    }