| package com.doumee.core.wms.model.response; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2023/11/23 14:03 | 
|  */ | 
| @Data | 
| @ApiModel("WMS接口处理返回data参数") | 
| public class WmsInventoryDataResponse { | 
|   | 
|     @ApiModelProperty(value = "是否接收成功 1成功 -1 失败" ,example = "1") | 
|     private String success; | 
|     @ApiModelProperty(value = "消息描述" ,example = "1") | 
|     private String msgDescr; | 
|     @ApiModelProperty(value = "消息描述" ,example = "1") | 
|     private List<WmsInventoryJsonResponse> json; | 
|   | 
| } |