package com.gkhy.safePlatform.account.model.dto.resp;
|
|
import java.io.Serializable;
|
|
public class GroupMemberPageRespDTO implements Serializable {
|
|
private static final long serialVersionUID = 5719304369072020911L;
|
|
private Long uid;
|
|
private String username;
|
|
private String realName;
|
|
private Byte status;
|
|
private String statusDesc;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getUsername() {
|
return username;
|
}
|
|
public void setUsername(String username) {
|
this.username = username;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getStatusDesc() {
|
return statusDesc;
|
}
|
|
public void setStatusDesc(String statusDesc) {
|
this.statusDesc = statusDesc;
|
}
|
}
|