| package com.vincent.rsf.server.api.controller.erp.params; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import lombok.experimental.Accessors; | 
|   | 
| @Data | 
| @Accessors(chain = true) | 
| @ApiModel(value = "TaskInParam", description = "WCS调度参数") | 
| public class TaskInParam { | 
|   | 
|     @ApiModelProperty("作业类型") | 
|     private Integer ioType;  //作业类型 | 
|   | 
|     @ApiModelProperty("作业站点 or 来源站点") | 
|     private String sourceStaNo; //作业站点 or 来源站点 | 
|   | 
|     @ApiModelProperty("容器条码") | 
|     private String barcode; //容器条码 | 
|   | 
|     @ApiModelProperty("库位类型") | 
|     private Integer locType1; //库位类型 | 
|   | 
|     @ApiModelProperty("任务编码") | 
|     private String taskCode; | 
|   | 
| //    @ApiModelProperty("库位类型") | 
| //    private String locType; | 
|   | 
|     private Long user; | 
|   | 
|     private String orgLoc; | 
| //    private Integer locType2; //库位类型 | 
| //    private Integer locType3; //库位类型 | 
| } |