public class UserRegisterRespDTO implements Serializable{

    private String userId; //用户ID
    private String token; //用户令牌

    public String getUserId(){
        return userId;
    }

    public void setUserId(String userId){
        this.userId = userId;
    }

    public String getToken(){
        return token;
    }

    public void setToken(String token){
        this.token = token;
    }

}