| | |
| | | @ApiModelProperty(value = "寄存方式:0=就地存取;1=异地存取") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "订单状态") |
| | | @ApiModelProperty(value = "就地寄存状态:0=待支付;1=待寄存;2=已寄存;5=待取件;6=存在逾期;7=已完成;96:订单关闭(退款);97:取消逾期;98=取消中;99=已取消;" + |
| | | " 异地寄存状态:0=待支付;1=待寄存;2=已寄存;3=已接单;4=派送中;5=已到店/已送达;6=存在逾期;7=已完成;96:订单关闭(退款);97:取消逾期;98=取消中;99=已取消") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "状态文案") |
| | | private String statusName; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date expectedTakeTime; |
| | | |
| | | @ApiModelProperty(value = "会员取件码") |
| | | private String memberVerifyCode; |
| | | |
| | | // ---- 存件门店 ---- |
| | | |
| | | @ApiModelProperty(value = "存件门店主键") |
| | | private Integer depositShopId; |
| | | |
| | | @ApiModelProperty(value = "存件门店名称") |
| | | private String depositShopName; |
| | |
| | | private String depositShopPhone; |
| | | |
| | | // ---- 取件信息 ---- |
| | | |
| | | @ApiModelProperty(value = "取件门店主键(有取件门店时返回)") |
| | | private Integer takeShopId; |
| | | |
| | | @ApiModelProperty(value = "取件门店名称(有取件门店时返回)") |
| | | private String takeShopName; |
| | |
| | | |
| | | // ---- 费用 ---- |
| | | |
| | | @ApiModelProperty(value = "报价保费(分)") |
| | | @ApiModelProperty(value = "保价保费(分)") |
| | | private Long declaredFee; |
| | | |
| | | @ApiModelProperty(value = "预估费用(分)") |
| | |
| | | |
| | | @ApiModelProperty(value = "物品明细列表") |
| | | private List<OrderItemVO> detailList; |
| | | |
| | | // ---- 门店端 ---- |
| | | |
| | | @ApiModelProperty(value = "当前门店角色:1=存件门店;2=取件门店(仅门店端返回)") |
| | | private Integer shopRole; |
| | | |
| | | // ---- 评价 ---- |
| | | |
| | | @ApiModelProperty(value = "评价状态:0=未评价;1=已评价") |
| | | private Integer commentStatus; |
| | | } |