admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package com.yeshi.fanli.entity.taobao;
 
import org.springframework.data.annotation.Transient;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 淘宝维权订单
 * 
 * @author Administrator
 *
 */
 
@Table("yeshi_ec_taobao_weiqaun_order")
public class TaoBaoWeiQuanOrder {
    @Column(name = "tmo_id")
    private Long id;
    @Column(name = "tmo_order_id")
    private String orderId;
    @Column(name = "tmo_order_item_id")
    private String orderItemId;
    @Column(name = "tmo_goods_name")
    private String goodsName;
    @Column(name = "tmo_money")
    private BigDecimal money;
    @Column(name = "tmo_fan_money")
    private BigDecimal fanMoney;
    @Column(name = "tmo_state")
    private String state;
    @Column(name = "tmo_jiesuan_time")
    private Date jieSuanTime;
    @Column(name = "tmo_weiquan_time")
    private Date weiQuanTime;
    @Column(name = "tmo_weiquan_finish_time")
    private Date weiQuanFinishTime;
    @Column(name = "tmo_createtime")
    private Date createTime;// 创建时间
    @Column(name = "tmo_updatetime")
    private Date updateTime;// 本地更新时间
    @Column(name = "tmo_settlement")
    private BigDecimal settlement;// 结算金额
    @Transient
    private int mate; // 是否已匹配
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public BigDecimal getSettlement() {
        return settlement;
    }
 
    public void setSettlement(BigDecimal settlement) {
        this.settlement = settlement;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public String getOrderItemId() {
        return orderItemId;
    }
 
    public void setOrderItemId(String orderItemId) {
        this.orderItemId = orderItemId;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public BigDecimal getFanMoney() {
        return fanMoney;
    }
 
    public void setFanMoney(BigDecimal fanMoney) {
        this.fanMoney = fanMoney;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public Date getJieSuanTime() {
        return jieSuanTime;
    }
 
    public void setJieSuanTime(Date jieSuanTime) {
        this.jieSuanTime = jieSuanTime;
    }
 
    public Date getWeiQuanTime() {
        return weiQuanTime;
    }
 
    public void setWeiQuanTime(Date weiQuanTime) {
        this.weiQuanTime = weiQuanTime;
    }
 
    public Date getWeiQuanFinishTime() {
        return weiQuanFinishTime;
    }
 
    public void setWeiQuanFinishTime(Date weiQuanFinishTime) {
        this.weiQuanFinishTime = weiQuanFinishTime;
    }
 
    public int getMate() {
        return mate;
    }
 
    public void setMate(int mate) {
        this.mate = mate;
    }
}