| | |
| | | package com.aps.core.domain; |
| | | |
| | | import java.util.Date; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 气体管路计划管理-临时对象 aps_gas_piping_plan_temp |
| | |
| | | |
| | | /** 生产数量 */ |
| | | @Excel(name = "生产数量") |
| | | private Long productionQuantity; |
| | | private BigDecimal productionQuantity; |
| | | |
| | | /** 良品数量 */ |
| | | @Excel(name = "良品数量") |
| | | private Long goodProductsQuantity; |
| | | private BigDecimal goodProductsQuantity; |
| | | |
| | | /** 工序号 */ |
| | | @Excel(name = "工序号") |
| | |
| | | return versionNumber; |
| | | } |
| | | |
| | | public void setProductionQuantity(Long productionQuantity) |
| | | public void setProductionQuantity(BigDecimal productionQuantity) |
| | | { |
| | | this.productionQuantity = productionQuantity; |
| | | } |
| | | |
| | | public Long getProductionQuantity() |
| | | public BigDecimal getProductionQuantity() |
| | | { |
| | | return productionQuantity; |
| | | } |
| | | |
| | | public void setGoodProductsQuantity(Long goodProductsQuantity) |
| | | public void setGoodProductsQuantity(BigDecimal goodProductsQuantity) |
| | | { |
| | | this.goodProductsQuantity = goodProductsQuantity; |
| | | } |
| | | |
| | | public Long getGoodProductsQuantity() |
| | | public BigDecimal getGoodProductsQuantity() |
| | | { |
| | | return goodProductsQuantity; |
| | | } |