xiejun
2025-01-23 9ac3bd680a350c1cc4baad082d92cd2c5f158f3e
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
32
33
34
35
36
37
38
39
40
package com.vci.rmip.code.client.codeapply.Apply410.object;
 
public class UserObject {
    private String grant_type;     // password;
    private String scope;//all
    private String  username;//admin
    private String password;//:123456
 
    public String getGrant_type() {
        return grant_type;
    }
 
    public void setGrant_type(String grant_type) {
        this.grant_type = grant_type;
    }
 
    public String getScope() {
        return scope;
    }
 
    public void setScope(String scope) {
        this.scope = scope;
    }
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
}