43 lines
698 B
Plaintext
43 lines
698 B
Plaintext
|
|
package com.securityControl.auth.pojo;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
public class UnionUserCodeRes {
|
||
|
|
private String id;
|
||
|
|
private String code;
|
||
|
|
private String name;
|
||
|
|
private Long time;
|
||
|
|
|
||
|
|
public String getCode() {
|
||
|
|
return code;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCode(String code) {
|
||
|
|
this.code = code;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(String id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getName() {
|
||
|
|
return name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setName(String name) {
|
||
|
|
this.name = name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getTime() {
|
||
|
|
return time;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTime(Long time) {
|
||
|
|
this.time = time;
|
||
|
|
}
|
||
|
|
}
|