| | |
| | | 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_plate_plan |
| | |
| | | |
| | | /** 生产数量 */ |
| | | @Excel(name = "生产数量") |
| | | private Integer productionQuantity; |
| | | private BigDecimal productionQuantity; |
| | | |
| | | /** 良品数量 */ |
| | | @Excel(name = "良品数量") |
| | |
| | | return versionNumber; |
| | | } |
| | | |
| | | public void setProductionQuantity(Integer productionQuantity) |
| | | public void setProductionQuantity(BigDecimal productionQuantity) |
| | | { |
| | | this.productionQuantity = productionQuantity; |
| | | } |
| | | |
| | | public Integer getProductionQuantity() |
| | | public BigDecimal getProductionQuantity() |
| | | { |
| | | return productionQuantity; |
| | | } |