| package com.doumee.dao.openapi.response; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/12/7 11:19 | 
|  */ | 
| @Data | 
| @ApiModel("【月台】月台当前作业信息详情返回参数") | 
| public class PlatformDataInfoResponse { | 
|     @ApiModelProperty(value = "月台主键", example = "1") | 
|     private Integer id; | 
|     @ApiModelProperty(value = "安防平台月台主键", example = "1") | 
|     private String hkId; | 
|     @ApiModelProperty(value = "月台名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "承运单号") | 
|     private String orderCode; | 
|     @ApiModelProperty(value = "作业车辆") | 
|     private String carCode; | 
|     @ApiModelProperty(value = "承运商") | 
|     private String carrierName; | 
|     @ApiModelProperty(value = "收货地(目的地)") | 
|     private String repertotyAddress; | 
|     @ApiModelProperty(value = "来源地(供应商多个)") | 
|     private List<String> inRepertotyCode; | 
|     @ApiModelProperty(value = "收货信息") | 
|     private List<PlatformDataWmsInfoResponse> platformDataWmsInfoResponseList; | 
|   | 
| } |