| | |
| | | @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; |
| | | } |