admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
package com.yeshi.fanli.entity.taobao;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 淘口令
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_taobao_token")
public class TaoBaoToken {
    @Column(name = "tt_id")
    private Long id;
    @Column(name = "tt_pid")
    private String pid;
    @Column(name = "tt_token")
    private String token;// 口令
    @Column(name = "tt_auction_id")
    private Long auctionId;// 商品Id
    @Column(name = "tt_create_time")
    private Date createTime;// 创建时间
    @Column(name = "tt_expire_time")
    private Date expireTime;// 到期时间
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getPid() {
        return pid;
    }
 
    public void setPid(String pid) {
        this.pid = pid;
    }
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public Long getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(Long auctionId) {
        this.auctionId = auctionId;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getExpireTime() {
        return expireTime;
    }
 
    public void setExpireTime(Date expireTime) {
        this.expireTime = expireTime;
    }
}