admin
2024-06-30 b6fdf185c7e8fb1f06da0e609e39aecaef6b66f5
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
package com.taoke.autopay.entity;
 
import org.springframework.data.annotation.Id;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import java.util.Date;
 
/**
 * @author hxh
 * @title: WxUserOrderCount
 * @description: 用户订单数量
 * @date 2024/6/28 17:08
 */
@Table("table_wx_user_order_count")
public class WxUserOrderCount {
    @Id
    @Column(name = "id")
    private String id;
    @Column(name = "day")
    private String day;
    @Column(name = "uid")
    private Long uid;
    @Column(name = "order_count")
    private Integer orderCount;
    @Column(name = "order_type")
    private Integer orderType;
    @Column(name = "create_time")
    private Date createTime;
    @Column(name = "update_time")
    private Date updateTime;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getDay() {
        return day;
    }
 
    public void setDay(String day) {
        this.day = day;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
 
 
    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 Integer getOrderCount() {
        return orderCount;
    }
 
    public void setOrderCount(Integer orderCount) {
        this.orderCount = orderCount;
    }
 
    public Integer getOrderType() {
        return orderType;
    }
 
    public void setOrderType(Integer orderType) {
        this.orderType = orderType;
    }
}