Administrator
2025-04-21 a217652d33c75df23202828000d82d0ca8555ac2
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
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: WxUserSetting
 * @description: 用户设置信息
 * @date 2024/6/28 16:50
 */
@Table("table_wx_user_settings")
public class WxUserSettings {
    @Id
    @Column(name = "id")
    private Long id;
    @Column(name = "dy_order_count_day")
    private Integer dyOrderCountPerDay;
    @Column(name = "ks_order_count_day")
    private Integer ksOrderCountPerDay;
    @Column(name = "total_order_count_day")
    private Integer totalOrderCountPerDay;
    @Column(name = "create_time")
    private Date createTime;
    @Column(name = "update_time")
    private Date updateTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getDyOrderCountPerDay() {
        return dyOrderCountPerDay;
    }
 
    public void setDyOrderCountPerDay(Integer dyOrderCountPerDay) {
        this.dyOrderCountPerDay = dyOrderCountPerDay;
    }
 
    public Integer getKsOrderCountPerDay() {
        return ksOrderCountPerDay;
    }
 
    public void setKsOrderCountPerDay(Integer ksOrderCountPerDay) {
        this.ksOrderCountPerDay = ksOrderCountPerDay;
    }
 
    public Integer getTotalOrderCountPerDay() {
        return totalOrderCountPerDay;
    }
 
    public void setTotalOrderCountPerDay(Integer totalOrderCountPerDay) {
        this.totalOrderCountPerDay = totalOrderCountPerDay;
    }
 
    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;
    }
}