| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 零件统计表对象 aps_part_route_stat |
| | |
| | | |
| | | /** 生产数量 */ |
| | | @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 = "设计工时") |
| | |
| | | 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; |
| | | } |