| | |
| | | package com.ruoyi.system.api.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.ruoyi.common.core.enums.OrderFromEnum; |
| | | import com.ruoyi.common.core.enums.OrderStatusEnum; |
| | |
| | | private String logisticsNum; |
| | | |
| | | |
| | | @ApiModelProperty(value = "收货人姓名") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String receiverName; |
| | | |
| | | @ApiModelProperty(value = "收货人电话") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String receiverPhone; |
| | | |
| | | @ApiModelProperty(value = "城市") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String receiverCity; |
| | | |
| | | |
| | | @ApiModelProperty(value = "详细地址") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String receiverDetailAddress; |
| | | |
| | | @ApiModelProperty(value = "订单说明") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String orderShuoMin; |
| | | |
| | | @ApiModelProperty(value = "订单退货周期") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer orderZq; |
| | | |
| | | @ApiModelProperty(value = "确认收货时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private LocalDateTime receiveTime; |
| | | |
| | | |
| | | } |