| | |
| | | public class RcsPubTaskParams implements Serializable { |
| | | |
| | | @ApiModelProperty("批次") |
| | | private String batch; |
| | | private String batchNo; |
| | | |
| | | @ApiModelProperty("任务明细") |
| | | private List<TaskParam> taskList; |
| | | private List<TaskParam> tasks; |
| | | } |
| | | |
| | | @Data |
| | |
| | | @ApiModel(value = "TaskItem", description = "任务列表") |
| | | class TaskParam { |
| | | |
| | | @ApiModelProperty("任务类型{LOC_TO_LOC: 移库, LOC_TO_STA: 出库, STA_TO_LOC: 入库, STA_TO_STA: 站点间搬运}") |
| | | private String taskType; |
| | | |
| | | @ApiModelProperty("任务号") |
| | | private String seqNum; |
| | | private String taskNo; |
| | | |
| | | @ApiModelProperty("起始库位") |
| | | private String oriLoc; |