14 lines
230 B
Plaintext
14 lines
230 B
Plaintext
|
|
package com.securityControl.auth.pojo;
|
||
|
|
|
||
|
|
public class GetUserInfoParams {
|
||
|
|
private String code;
|
||
|
|
|
||
|
|
public String getCode() {
|
||
|
|
return code;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCode(String code) {
|
||
|
|
this.code = code;
|
||
|
|
}
|
||
|
|
}
|