zhitong.yu
7 天以前 7fc9c42987a13c1d8d2159591a5803e70518827f
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
package com.hxzk.gps.controller.User.Results;
 
import lombok.Getter;
import lombok.Setter;
 
@Getter
@Setter
public class LoginResult {
    public Integer code;
    public String msg;
    public String access_token;
 
    public LoginResult(Integer code, String msg, String access_token) {
        this.code = code;
        this.msg = msg;
        this.access_token = access_token;
    }
    public LoginResult(Integer code, String msg) {
        this.code = code;
        this.msg = msg;
    }
    public LoginResult(String access_token) {
        this.access_token = access_token;
    }
}