| | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | |
| | | |
| | | /** 每日理论时间 */ |
| | | @Excel(name = "每日理论时间") |
| | | private Long theoryHours; |
| | | private BigDecimal theoryHours; |
| | | |
| | | /** 截止需求日剩余天数 */ |
| | | @Excel(name = "截止需求日剩余天数") |
| | |
| | | |
| | | /** 理论产能 */ |
| | | @Excel(name = "理论产能") |
| | | private Long theoryCapacity; |
| | | private BigDecimal theoryCapacity; |
| | | |
| | | /** 机加需求日期 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | |
| | | return devicesQuantity; |
| | | } |
| | | |
| | | public void setTheoryHours(Long theoryHours) |
| | | public void setTheoryHours(BigDecimal theoryHours) |
| | | { |
| | | this.theoryHours = theoryHours; |
| | | } |
| | | |
| | | public Long getTheoryHours() |
| | | public BigDecimal getTheoryHours() |
| | | { |
| | | return theoryHours; |
| | | } |
| | |
| | | return restDays; |
| | | } |
| | | |
| | | public void setTheoryCapacity(Long theoryCapacity) |
| | | public void setTheoryCapacity(BigDecimal theoryCapacity) |
| | | { |
| | | this.theoryCapacity = theoryCapacity; |
| | | } |
| | | |
| | | public Long getTheoryCapacity() |
| | | public BigDecimal getTheoryCapacity() |
| | | { |
| | | return theoryCapacity; |
| | | } |