| | |
| | | package com.aps.core.domain; |
| | | |
| | | 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; |
| | |
| | | private Long theoryCapacity; |
| | | |
| | | /** 机加需求日期 */ |
| | | @Excel(name = "机加需求日期") |
| | | @Excel(name = "机加需求日期",width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime requestDate; |
| | | |
| | | /** 删除标志(0代表存在 2代表删除) */ |
| | | private String delFlag; |
| | | |
| | | /** 工厂 */ |
| | | @Excel(name = "工厂") |
| | | // @Excel(name = "工厂") |
| | | private String plant; |
| | | |
| | | public void setId(String id) |