| | |
| | | @ApiModelProperty(value = "导入批号(关联plan_import表)", example = "1") |
| | | @ExcelColumn(name="导入批号(关联plan_import表)") |
| | | private Integer importId; |
| | | |
| | | @ApiModelProperty(value = "计划员编码(与system_user表关联)", example = "1") |
| | | @ExcelColumn(name="计划员编码(与system_user表关联)") |
| | | private Integer userId; |
| | | |
| | | @ApiModelProperty(value = "状态 0已生成、1已发布、2已撤回、3已取消、4已分配、5已暂停、6已完工、7已入库、8已关闭", example = "1") |
| | | @ExcelColumn(name="状态 0已生成、1已发布、2已撤回、3已取消、4已分配、5已暂停、6已完工、7已入库、8已关闭") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "计划类型 0正常1异常2返工", example = "1") |
| | | @ExcelColumn(name="计划类型 0正常1异常2返工") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "已报工数量", example = "1",hidden = true) |
| | | @TableField(exist = false) |
| | | private Integer baogongNum; |
| | | |
| | | @ApiModelProperty(value = "计划发布时间") |
| | | @ExcelColumn(name="计划发布时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |