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