| package com.xzx.gc.order.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel(value = "JhyOrderListVo", description = "集物员订单列表返回参数类") | 
| public class JhyOrderListVo { | 
|   | 
|     @ApiModelProperty(value = "订单ID") | 
|     private Long orderId; | 
|   | 
|     @ApiModelProperty(value = "预约时间") | 
|     private String reserveTime; | 
|   | 
|     @ApiModelProperty(value = "姓名") | 
|     private String username; | 
|   | 
|     @ApiModelProperty(value = "手机号") | 
|     private String phone; | 
|   | 
|     @ApiModelProperty(value = "物品") | 
|     private String items; | 
|   | 
|     @ApiModelProperty(value = "地址") | 
|     private String address; | 
|   | 
|     @ApiModelProperty(value = "经度") | 
|     private String longitude; | 
|   | 
|     @ApiModelProperty(value = "纬度") | 
|     private String latitude; | 
|   | 
|     @ApiModelProperty(value = "重量") | 
|     private String weight; | 
|   | 
|     @ApiModelProperty(value = "取货时间") | 
|     private String receivingTime; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "入库时间") | 
|     private String storageTime; | 
|   | 
|     @ApiModelProperty(value = "入库重量") | 
|     private String storageWeight; | 
|   | 
|     @ApiModelProperty(value = "入库积分") | 
|     private String storageScore; | 
|   | 
|     @ApiModelProperty(value = "回收重量") | 
|     private String recycleWeight; | 
|   | 
|     @ApiModelProperty(value = "回收积分") | 
|     private String recycleScore; | 
|   | 
|     @ApiModelProperty(value = "损耗重量") | 
|     private int lossWeight; | 
|   | 
|     @ApiModelProperty(value = "状态") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "集物员姓名") | 
|     private String jhyName; | 
|   | 
|     @ApiModelProperty(value = "集物员电话") | 
|     private String jhyPhone; | 
|   | 
|     @ApiModelProperty(value = "回收/台") | 
|     private String recycleTai; | 
|   | 
|     @ApiModelProperty(value = "回收/kg") | 
|     private String recycleKg; | 
| } |