| | |
| | | private String department; |
| | | |
| | | /** 计划开工日 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "计划开工日", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划开工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date planStartDay; |
| | | |
| | | /** 计划完工日 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "计划完工日", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划完工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date planEndDay; |
| | | |
| | | /** 备料料号 */ |
| | |
| | | @Excel(name = "下一工序名称") |
| | | private String nextOpName; |
| | | |
| | | /** 下一工序名称 */ |
| | | @Excel(name = "当前工序名称") |
| | | private String stdOp; |
| | | |
| | | public String getStdOp() { |
| | | return stdOp; |
| | | } |
| | | |
| | | public void setStdOp(String stdOp) { |
| | | this.stdOp = stdOp; |
| | | } |
| | | |
| | | public String getOpStatus() { |
| | | return opStatus; |
| | | } |