| | |
| | | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | |
| | | /** 当前工序号 */ |
| | | @Excel(name = "当前工序号") |
| | | @Schema(description = "当前工序号", type = "String") |
| | | private String currentProcessNumber; |
| | | private BigDecimal currentProcessNumber; |
| | | |
| | | /** 生产数量 */ |
| | | @Excel(name = "生产数量") |
| | |
| | | @Transient |
| | | private String searchType; |
| | | |
| | | /** 计划完成日 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划完工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date processPlanEndDay; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |