| | |
| | | @ApiModelProperty("任务明细") |
| | | private List<TaskItemParam> taskList; |
| | | } |
| | | |
| | | |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "TaskItem", description = "任务列表") |
| | | class TaskItemParam { |
| | | |
| | | @ApiModelProperty("任务类型{LOC_TO_LOC: 移库, LOC_TO_STA: 出库, STA_TO_LOC: 入库, STA_TO_STA: 站点间搬运}") |
| | | private String taskType; |
| | | |
| | | @ApiModelProperty("任务号") |
| | | private String seqNum; |
| | | |
| | | @ApiModelProperty("起始库位") |
| | | private String oriLoc; |
| | | |
| | | @ApiModelProperty("起始站点") |
| | | private String oriSta; |
| | | |
| | | @ApiModelProperty("目标库位") |
| | | private String destLoc; |
| | | |
| | | @ApiModelProperty("目标站点") |
| | | private String destSta; |
| | | |
| | | @ApiModelProperty("托盘码") |
| | | private String zpallet; |
| | | |
| | | @ApiModelProperty("优先级") |
| | | private Integer priority; |
| | | } |