| | |
| | | package com.stylefeng.guns.modular.system.model; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class OrderListVo { |
| | | @ApiModelProperty("订单id") |
| | | @JsonSerialize( |
| | | using = ToStringSerializer.class |
| | | ) |
| | | private Long orderId; |
| | | |
| | | @ApiModelProperty("客户信息") |
| | |
| | | @ApiModelProperty("送柜地点") |
| | | private String destination; |
| | | |
| | | @ApiModelProperty("订单状态 0未开始 1已完成 2待取货-未出发 3待取货-已出发 4已到港口码头 5车场运输中 6在车场 7运输中 8待卸货 9已卸货 10运回车场中 11空柜订单在车场 12送检查站 13检查中 14检查站待取货 15在仓库 16取消订单 17已选择") |
| | | @ApiModelProperty("订单状态 0未开始 1已完成 2待取货-未出发 3待取货-已出发 4已到港口码头 5车场运输中 6在车场 7运输中 8待卸货 9已卸货 10运回车场中 11空柜订单在车场 12送检查站 13检查中 14检查站待取货 15在仓库 16取消订单 17已选择 18运回码头") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("是否可以提货 1是2否") |
| | | private Integer state; |
| | | |
| | | private String kg; |
| | | |
| | | |
| | | } |