All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.wx.common.entity.WxUserToken Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
package org.frameworkset.wx.common.entity;

import com.fasterxml.jackson.annotation.JsonProperty;

public class WxUserToken {

	
    private String UserId;

    private String errcode;

    private String errmsg;

    private String deviceId;

    private String openId;

    public WxUserToken() {
        // TODO Auto-generated constructor stub
    }

    public String getErrcode() {
        return errcode;
    }

    public void setErrcode(String errcode) {
        this.errcode = errcode;
    }

    public String getErrmsg() {
        return errmsg;
    }

    public void setErrmsg(String errmsg) {
        this.errmsg = errmsg;
    }

    public String getDeviceId() {
        return deviceId;
    }

    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }

    public String getOpenId() {
        return openId;
    }

    public void setOpenId(String openId) {
        this.openId = openId;
    }
    @JsonProperty("UserId")
    public String getUserId() {
        return UserId;
    }
    @JsonProperty("UserId")
    public void setUserId(String userId) {
        UserId = userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy