-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathParam.java
More file actions
39 lines (29 loc) · 709 Bytes
/
Param.java
File metadata and controls
39 lines (29 loc) · 709 Bytes
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
package com.wiceflow.url;
/**
* @author BF
* @date 2018/8/19
* 参数
*/
public class Param {
private String grant_type;
private String client_id;
private String client_secret;
public String getGrant_type() {
return grant_type;
}
public void setGrant_type(String grant_type) {
this.grant_type = grant_type;
}
public String getClient_id() {
return client_id;
}
public void setClient_id(String client_id) {
this.client_id = client_id;
}
public String getClient_secret() {
return client_secret;
}
public void setClient_secret(String client_secret) {
this.client_secret = client_secret;
}
}