package com.gkhy.safePlatform.account.rpc.apimodel.model.resp; import java.io.Serializable; public class UserRPCRespDTO implements Serializable { private static final long serialVersionUID = -1422021048749063149L; private String uid; private String uuid; private String username; private String realName; private String phone; private String email; private UserEnterpriseRPCRespDTO enterprise; private UserDepRPCRespDTO department; public String getUid() { return uid; } public void setUid(String uid) { this.uid = uid; } public String getUuid() { return uuid; } public void setUuid(String uuid) { this.uuid = uuid; } 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 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 UserEnterpriseRPCRespDTO getEnterprise() { return enterprise; } public void setEnterprise(UserEnterpriseRPCRespDTO enterprise) { this.enterprise = enterprise; } public UserDepRPCRespDTO getDepartment() { return department; } public void setDepartment(UserDepRPCRespDTO department) { this.department = department; } }