| | |
| | | |
| | | /** 生产数量 */ |
| | | @Excel(name = "生产数量") |
| | | private Long productionQuantity; |
| | | private Integer productionQuantity; |
| | | |
| | | /** 良品数量 */ |
| | | @Excel(name = "良品数量") |
| | | private Long goodProductsQuantity; |
| | | private Integer goodProductsQuantity; |
| | | |
| | | /** 工序号 */ |
| | | @Excel(name = "工序号") |
| | |
| | | return versionNumber; |
| | | } |
| | | |
| | | public void setProductionQuantity(Long productionQuantity) |
| | | public void setProductionQuantity(Integer productionQuantity) |
| | | { |
| | | this.productionQuantity = productionQuantity; |
| | | } |
| | | |
| | | public Long getProductionQuantity() |
| | | public Integer getProductionQuantity() |
| | | { |
| | | return productionQuantity; |
| | | } |
| | | |
| | | public void setGoodProductsQuantity(Long goodProductsQuantity) |
| | | public void setGoodProductsQuantity(Integer goodProductsQuantity) |
| | | { |
| | | this.goodProductsQuantity = goodProductsQuantity; |
| | | } |
| | | |
| | | public Long getGoodProductsQuantity() |
| | | public Integer getGoodProductsQuantity() |
| | | { |
| | | return goodProductsQuantity; |
| | | } |