陶杰
2024-08-22 ee9032d9baf5f33e376d2d2699136e0a7b26bec7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.mzl.flower.entity.payment;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mzl.flower.base.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@TableName("t_order")
public class Order extends BaseEntity {
 
    @TableField("order_no")
    private String orderNo;//单号
 
    @TableField("flower_amount")
    private BigDecimal flowerAmount;//商品金额
 
    @TableField("packing_fee")
    private BigDecimal packingFee;//打包费
 
    @TableField("transport_fee")
    private BigDecimal transportFee;//运费
 
    @TableField("total_amount")
    private BigDecimal totalAmount;//订单金额
 
    @TableField("status")
    private String status;//状态(ORDER_STATUS)
 
    @TableField("status_backend")
    private String statusBackend;//状态(ORDER_STATUS_BACKEND)
 
    @TableField("payment_amount")
    private BigDecimal paymentAmount;//支付金额
 
    @TableField("payment_time")
    private LocalDateTime paymentTime;//支付时间
 
    @TableField("payment_tr_id")
    private String paymentTrId;//支付单号
 
    @TableField("customer")
    private String customer;//收货人
 
    @TableField("customer_tel")
    private String customerTel;//收货人手机号码
 
    @TableField("customer_province")
    private String customerProvince;
 
    @TableField("customer_city")
    private String customerCity;
 
    @TableField("customer_region")
    private String customerRegion;
 
    @TableField("customer_address")
    private String customerAddress;//收货地址
 
    @TableField("delivery_name")
    private String deliveryName;//快递名称
 
    @TableField("delivery_no")
    private String deliveryNo;//快递单号
 
    @TableField("warehouse_id")
    private Long warehouseId;//仓库id
 
    @TableField("warehouse_name")
    private String warehouseName;//仓库名称
 
    @TableField("warehouse_location_id")
    private Long warehouseLocationId;//库位id
 
    @TableField("warehouse_location_code")
    private String warehouseLocationCode;//库位名称
 
    @TableField("warehouse_time")
    private LocalDateTime warehouseTime;//库位分配时间
 
    @TableField("partner_id")
    private Long partnerId;//合伙人id
 
    @TableField("partner_name")
    private String partnerName;//合伙人名称
 
    @TableField("special_needs")
    private String specialNeeds;//特殊需求
 
    @TableField("remarks")
    private String remarks;//留言
 
    @TableField("evaluate")
    private String evaluate;//评价
 
    @TableField("cancel_time")
    private LocalDateTime cancelTime;//取消时间
 
    @TableField("evaluate_time")
    private LocalDateTime evaluateTime;//评价时间
 
    @TableField("refund_no")
    private String refundNo;//退款单号
 
    @TableField("refund_amount")
    private BigDecimal refundAmount;//退款金额
 
    @TableField("refund_time")
    private LocalDateTime refundTime;//退款时间
 
    @TableField("transfer_id")
    private String transferId;//降级打款记录id
 
    @TableField("receive_time")
    private LocalDateTime receiveTime;//收货时间
 
    @TableField("complete_time")
    private LocalDateTime completeTime;//完成时间
 
    @TableField("transfer_time")
    private LocalDateTime transferTime;//转账时间
 
    @TableField("pay_openid")
    private String payOpenid;//微信付款openid
 
    @TableField("bill_id")
    private String billId;
 
    @TableField("wx_delivery_good")
    private Boolean wxDeliveryGood;// 微信发货成功状态
 
    @TableField("wx_delivery_msg")
    private String wxDeliveryMsg;// 微信发货返回消息
}