| | |
| | | @ApiModelProperty(value = "取件名称(门店名称或自定义地点)") |
| | | private String takeName; |
| | | |
| | | @ApiModelProperty(value = "取件地址") |
| | | private String takeAddress; |
| | | |
| | | @ApiModelProperty(value = "取件门店主键(有取件门店时返回)") |
| | | private Integer takeShopId; |
| | | |
| | | @ApiModelProperty(value = "取件距离(如 500m、1.2km)") |
| | | private String takeDistance; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String contactPhone; |
| | | @ApiModelProperty(value = "存件门店电话") |
| | | private String depositShopPhone; |
| | | |
| | | @ApiModelProperty(value = "取件联系电话(取件门店电话或取件人手机号)") |
| | | private String takeContactPhone; |
| | | |
| | | @ApiModelProperty(value = "司机薪酬(分)") |
| | | private Long driverFee; |
| | |
| | | @ApiModelProperty(value = "加急费用(分)") |
| | | private Long urgentAmount; |
| | | |
| | | @ApiModelProperty(value = "平台奖励金额(分)") |
| | | private Long platformRewardAmount; |
| | | |
| | | @ApiModelProperty(value = "物品明细列表") |
| | | private List<OrderItem> items; |
| | | |
| | | @ApiModelProperty(value = "是否贵重物品") |
| | | private Boolean isValuable; |
| | | |
| | | @ApiModelProperty(value = "物品等级名称") |
| | | private String goodLevelName; |
| | | |
| | | @ApiModelProperty(value = "物品类型名称") |
| | | private String goodTypeName; |
| | | |
| | | @ApiModelProperty(value = "是否存在特大尺寸:0=否 1=是") |
| | | private Integer hasOversized; |
| | | |
| | | @ApiModelProperty(value = "司机取货码(待取货状态时返回)") |
| | | private String driverVerifyCode; |
| | | |
| | | @ApiModelProperty(value = "导航纬度(status=2存件门店纬度,status=3/4取件纬度)") |
| | | private Double navigateLat; |
| | |
| | | |
| | | @ApiModelProperty(value = "下单附件图片全路径列表") |
| | | private List<String> orderImages; |
| | | |
| | | // ---- 时间信息 ---- |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @com.fasterxml.jackson.annotation.JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty(value = "司机接单时间") |
| | | @com.fasterxml.jackson.annotation.JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date acceptTime; |
| | | |
| | | @ApiModelProperty(value = "司机取件时间") |
| | | @com.fasterxml.jackson.annotation.JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date driverTakeTime; |
| | | |
| | | @ApiModelProperty(value = "订单完成时间") |
| | | @com.fasterxml.jackson.annotation.JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date finishTime; |
| | | |
| | | @ApiModelProperty(value = "订单备注") |
| | | private String remark; |
| | | |
| | | // ---- 实时经纬度(异地寄存按状态返回) ---- |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "数量") |
| | | private Integer quantity; |
| | | |
| | | @ApiModelProperty(value = "是否大件物品:0=否 1=是") |
| | | private Integer isOversized; |
| | | } |
| | | |
| | | } |