88 lines
1.7 KiB
Plaintext
88 lines
1.7 KiB
Plaintext
|
|
/*
|
||
|
|
*
|
||
|
|
* bowei_duan create at 2021/5/20 下午4:03
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
package com.securityControl.auth.pojo;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
|
||
|
|
public class WechatUser implements Serializable {
|
||
|
|
|
||
|
|
private String UserId ;
|
||
|
|
private String DeviceId ;
|
||
|
|
private int errcode ;
|
||
|
|
private String errmsg;
|
||
|
|
private int usertype;
|
||
|
|
private String picUrl ;
|
||
|
|
private String qrcode;
|
||
|
|
|
||
|
|
public String getUserId() {
|
||
|
|
return UserId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUserId(String userId) {
|
||
|
|
UserId = userId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDeviceId() {
|
||
|
|
return DeviceId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDeviceId(String deviceId) {
|
||
|
|
DeviceId = deviceId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getErrcode() {
|
||
|
|
return errcode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setErrcode(int errcode) {
|
||
|
|
this.errcode = errcode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getErrmsg() {
|
||
|
|
return errmsg;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setErrmsg(String errmsg) {
|
||
|
|
this.errmsg = errmsg;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getUsertype() {
|
||
|
|
return usertype;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUsertype(int usertype) {
|
||
|
|
this.usertype = usertype;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getPicUrl() {
|
||
|
|
return picUrl;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPicUrl(String picUrl) {
|
||
|
|
this.picUrl = picUrl;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getQrcode() {
|
||
|
|
return qrcode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setQrcode(String qrcode) {
|
||
|
|
this.qrcode = qrcode;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "WechatUser{" +
|
||
|
|
"UserId='" + UserId + '\'' +
|
||
|
|
", DeviceId='" + DeviceId + '\'' +
|
||
|
|
", errcode=" + errcode +
|
||
|
|
", errmsg='" + errmsg + '\'' +
|
||
|
|
", usertype=" + usertype +
|
||
|
|
'}';
|
||
|
|
}
|
||
|
|
}
|