工业级运维app手机api
xufenglei
2017-11-06 3f28569194b49383d0ab39620de344fb42ccab3f
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
26
package com.moral.monitor.entity;
 
/**
 * Created by a on 2017/3/2.
 * 用来封装  定时任务中获取到的 accesstoken
 */
public class AccessToken {
    private String access_token;
    private int expires_in;
 
    public String getAccess_token() {
        return access_token;
    }
 
    public void setAccess_token(String access_token) {
        this.access_token = access_token;
    }
 
    public int getExpires_in() {
        return expires_in;
    }
 
    public void setExpires_in(int expires_in) {
        this.expires_in = expires_in;
    }
}