| | |
| | | @ApiModel(value = "LocToTaskParams", description = "库存出库参数") |
| | | public class LocToTaskParams { |
| | | |
| | | @ApiModelProperty("类型: check:盘点出库, outStock: 库存出库") |
| | | @ApiModelProperty("类型: check:盘点出库, outStock: 库存出库, empty:空板出库") |
| | | private String type; |
| | | |
| | | @ApiModelProperty("原单据ID (用户单据出库查找业务类型") |
| | | private Long sourceId; |
| | | |
| | | @ApiModelProperty("目标站点") |
| | | private String siteNo; |
| | |
| | | @ApiModelProperty("目标库位") |
| | | private String tarLoc; |
| | | |
| | | @ApiModelProperty("备注") |
| | | private String memo; |
| | | |
| | | @ApiModelProperty("目标区域集合") |
| | | private List<String> targSiteAreaList; |
| | | } |