package com.qxueyou.scc.org.model; public class OrgNewUserModel { /** 姓名*/ private String name; /** 手机号*/ private String mobilePhone; /** 帐号*/ private String account; /** 密码*/ private String password; /** email*/ private String email; /** 机构ID*/ private String orgId; /** 角色ID*/ private String roleId; /** 备注*/ private String remark; /** 角色关系ID*/ private String reId; /** userId*/ private String userId; /** 讲师介绍 */ private String teacherDes; /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the mobilePhone */ public String getMobilePhone() { return mobilePhone; } /** * @param mobilePhone the mobilePhone to set */ public void setMobilePhone(String mobilePhone) { this.mobilePhone = mobilePhone; } /** * @return the account */ public String getAccount() { return account; } /** * @param account the account to set */ public void setAccount(String account) { this.account = account; } /** * @return the password */ public String getPassword() { return password; } /** * @param password the password to set */ public void setPassword(String password) { this.password = password; } /** * @return the email */ public String getEmail() { return email; } /** * @param email the email to set */ public void setEmail(String email) { this.email = email; } /** * @return the orgId */ public String getOrgId() { return orgId; } /** * @param orgId the orgId to set */ public void setOrgId(String orgId) { this.orgId = orgId; } /** * @return the roleId */ public String getRoleId() { return roleId; } /** * @param roleId the roleId to set */ public void setRoleId(String roleId) { this.roleId = roleId; } /** * @return the remark */ public String getRemark() { return remark; } /** * @param remark the remark to set */ public void setRemark(String remark) { this.remark = remark; } /** * @return the reId */ public String getReId() { return reId; } /** * @param reId the reId to set */ public void setReId(String reId) { this.reId = reId; } /** * @return the userId */ public String getUserId() { return userId; } /** * @param userId the userId to set */ public void setUserId(String userId) { this.userId = userId; } /** * @return the teacherDes */ public String getTeacherDes() { return teacherDes; } /** * @param teacherDes the teacherDes to set */ public void setTeacherDes(String teacherDes) { this.teacherDes = teacherDes; } }