package com.gkhy.safePlatform.account.rpc.apimodel.model.resp; import java.io.Serializable; import java.util.List; public class UserLoginRPCRespDTO implements Serializable { private static final long serialVersionUID = 6113267389626859245L; private Long uid; private String username; private String realName; private Byte type; private String phone; private String email; private String accessToken; private List roles; 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 getType() { return type; } public void setType(Byte type) { this.type = type; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getAccessToken() { return accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; } public List getRoles() { return roles; } public void setRoles(List roles) { this.roles = roles; } }