| | |
| | | |
| | | /** 生产数量 */ |
| | | @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 = "计划开工日") |
| | |
| | | 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; |
| | | } |