xuhy
2023-08-11 3c1223bf3eb6df077b48637a7c93a93246a1a8ae
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
package com.stylefeng.guns.modular.smallLogistics.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
 
import java.util.Date;
 
/**
 * 小件物流差价
 */
@TableName("t_order_logistics_spread")
public class OrderLogisticsSpread {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    /**
     * 小件物流订单id
     */
    @TableField("orderLogisticsId")
    private Integer orderLogisticsId;
    /**
     * 需要支付的差价金额
     */
    @TableField("price")
    private Double price;
    /**
     * 支付方式(1=微信,2=支付宝,3=其他)
     */
    @TableField("payType")
    private Integer payType;
    /**
     * 支付时间
     */
    @TableField("payTime")
    private Date payTime;
    /**
     * 支付金额
     */
    @TableField("payMoney")
    private Double payMoney;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getOrderLogisticsId() {
        return orderLogisticsId;
    }
 
    public void setOrderLogisticsId(Integer orderLogisticsId) {
        this.orderLogisticsId = orderLogisticsId;
    }
 
    public Double getPrice() {
        return price;
    }
 
    public void setPrice(Double price) {
        this.price = price;
    }
 
    public Integer getPayType() {
        return payType;
    }
 
    public void setPayType(Integer payType) {
        this.payType = payType;
    }
 
    public Date getPayTime() {
        return payTime;
    }
 
    public void setPayTime(Date payTime) {
        this.payTime = payTime;
    }
 
    public Double getPayMoney() {
        return payMoney;
    }
 
    public void setPayMoney(Double payMoney) {
        this.payMoney = payMoney;
    }
 
    @Override
    public String toString() {
        return "OrderLogisticsSpread{" +
                "id=" + id +
                ", orderLogisticsId=" + orderLogisticsId +
                ", price=" + price +
                ", payType=" + payType +
                ", payTime=" + payTime +
                ", payMoney=" + payMoney +
                '}';
    }
}