whyclj
2020-04-25 1851839aa296e8ce8a5ce1846296820c449f9987
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
27
28
29
30
31
package com.fgkj.actions;
 
import com.fgkj.services.AuthService;
 
public class FaceIdentify extends ActionUtil{
    private String json;    
    private String result;
    
    /**
     *     获取refresh_token 值
     * @return
     */
    public String getAuth(){
        String json = AuthService.getAuth();
        result = getGson().toJson(json);
        return SUCCESS;
    }
 
    
    
    
 
    public String getResult() {
        return result;
    }
 
 
    public void setJson(String json) {
        this.json = json;
    }
}