package com.qxueyou.scc.sys.model; import java.io.Serializable; /** * 用户激活返回结果 * @author zhiyong * */ public class ResponseResult implements Serializable { private static final long serialVersionUID = -8122352446681757516L; /** 结果 */ private boolean result; /** 结果信息 */ private String resultMsg; /** 待激活用户ID */ private String inactiveUserId; /** 是否已激活 */ private boolean ActiveFlag; /** 当前用户ID */ private String userId; /** 密码 */ private String emPw; /** 当前注册ID */ private String regId; /** 当前用户名 */ private String userName; /** 当前账户 */ private String account; /** 手机号码 */ private String mobilePhone; /** 昵称 */ private String alias; /** 性别 */ private boolean sex; /** 用户类型 */ private short userType; /** 头像地址 */ private String imgPath; /** 班级id */ private String classId; /** 班级名称 */ private String className; /** 科目id */ private String courseId; /** 科目名称 */ private String courseName; /** 机构id */ private String orgId; /** 机构TOPid */ private String topOrgId; /** 机构简称 */ private String orgShortName; /** 机构名 */ private String orgName; /** 机构联系方式 */ private String orgTel; /** 机构图片*/ private String orgLogoPath; /** 机构类型 */ private short orgType ; /** 机构编码*/ private String orgCode; /** 判断密码是否修改 true:需要修改 false:不需要修改 */ private boolean changePWDFlag ; /** 是否是游客 */ private boolean visitorFlag ; /** 是否第一次登录 */ private boolean firstFlag ; /** 唯一编码 */ private String uniqueCode ; /**签名 */ private String signature ; /**真实姓名 */ private String realName ; /**环信群组ID */ private String easmobGroupId ; /**第一次登入传播大使 */ private boolean everloginAts; /**weixin:是否提示下载Q学友APP */ private boolean appDownFlag; private Integer errorCode; /** 用户openId*/ private String openId; /** 是否在本机构有班级 true:该用户在此机构有班级 false:反之 */ private boolean hasOrgClass; public boolean isEverloginAts() { return everloginAts; } public void setEverloginAts(boolean everloginAts) { this.everloginAts = everloginAts; } public boolean getHasOrgClass() { return hasOrgClass; } public void setHasOrgClass(boolean hasOrgClass) { this.hasOrgClass = hasOrgClass; } /** * @return the password */ public String getEmPw() { return emPw; } /** * @param password the password to set */ public void setEmPw(String emPw) { this.emPw = emPw; } /** * @return the account */ public String getAccount() { return account; } /** * @param account the account to set */ public void setAccount(String account) { this.account = account; } /** * @return the changePWDFlag */ public boolean isChangePWDFlag() { return changePWDFlag; } /** * @param changePWDFlag the changePWDFlag to set */ public void setChangePWDFlag(boolean changePWDFlag) { this.changePWDFlag = changePWDFlag; } /** * * @param result */ public ResponseResult(boolean result) { this.result = result; } /** * * @param result * @param resultMsg */ public ResponseResult(boolean result, String resultMsg) { this.result = result; this.resultMsg = resultMsg; } /** * * @param result * @param resultMsg */ public ResponseResult(boolean result, String resultMsg,Integer errorCode) { this.result = result; this.resultMsg = resultMsg; this.errorCode = errorCode; } /** * */ public ResponseResult() { // TODO Auto-generated constructor stub } /** * @return the result */ public boolean isResult() { return result; } /** * @param result the result to set */ public void setResult(boolean result) { this.result = result; } /** * @return the resultMsg */ public String getResultMsg() { return resultMsg; } /** * @param resultMsg the resultMsg to set */ public void setResultMsg(String resultMsg) { this.resultMsg = resultMsg; } /** * @return the inactiveUserId */ public String getInactiveUserId() { return inactiveUserId; } /** * @param inactiveUserId the inactiveUserId to set */ public void setInactiveUserId(String inactiveUserId) { this.inactiveUserId = inactiveUserId; } /** * @return the activeFlag */ public boolean isActiveFlag() { return ActiveFlag; } /** * @param activeFlag the activeFlag to set */ public void setActiveFlag(boolean activeFlag) { ActiveFlag = activeFlag; } /** * @return the userId */ public String getUserId() { return userId; } /** * @param userId the userId to set */ public void setUserId(String userId) { this.userId = userId; } /** * @return the regId */ public String getRegId() { return regId; } /** * @param regId the regId to set */ public void setRegId(String regId) { this.regId = regId; } /** * @return the userName */ public String getUserName() { return userName; } /** * @param userName the userName to set */ public void setUserName(String userName) { this.userName = userName; } /** * @return the mobilePhone */ public String getMobilePhone() { return mobilePhone; } /** * @param mobilePhone the mobilePhone to set */ public void setMobilePhone(String mobilePhone) { this.mobilePhone = mobilePhone; } /** * @return the alias */ public String getAlias() { return alias; } /** * @param alias the alias to set */ public void setAlias(String alias) { this.alias = alias; } /** * @return the sex */ public boolean isSex() { return sex; } /** * @param sex the sex to set */ public void setSex(boolean sex) { this.sex = sex; } /** * @return the userType */ public short getUserType() { return userType; } /** * @param userType the userType to set */ public void setUserType(short userType) { this.userType = userType; } /** * @return the imgPath */ public String getImgPath() { return imgPath; } /** * @param imgPath the imgPath to set */ public void setImgPath(String imgPath) { this.imgPath = imgPath; } /** * @return the classId */ public String getClassId() { return classId; } /** * @param classId the classId to set */ public void setClassId(String classId) { this.classId = classId; } /** * @return the className */ public String getClassName() { return className; } /** * @param className the className to set */ public void setClassName(String className) { this.className = className; } /** * @return the courseId */ public String getCourseId() { return courseId; } /** * @param courseId the courseId to set */ public void setCourseId(String courseId) { this.courseId = courseId; } /** * @return the courseName */ public String getCourseName() { return courseName; } /** * @param courseName the courseName to set */ public void setCourseName(String courseName) { this.courseName = courseName; } /** * @return the orgId */ public String getOrgId() { return orgId; } /** * @param orgId the orgId to set */ public void setOrgId(String orgId) { this.orgId = orgId; } /** * @return the topOrgId */ public String getTopOrgId() { return topOrgId; } /** * @param topOrgId the topOrgId to set */ public void setTopOrgId(String topOrgId) { this.topOrgId = topOrgId; } /** * @return the orgShortName */ public String getOrgShortName() { return orgShortName; } /** * @param orgShortName the orgShortName to set */ public void setOrgShortName(String orgShortName) { this.orgShortName = orgShortName; } /** * @return the orgName */ public String getOrgName() { return orgName; } /** * @param orgName the orgName to set */ public void setOrgName(String orgName) { this.orgName = orgName; } /** * @return the orgTel */ public String getOrgTel() { return orgTel; } /** * @param orgTel the orgTel to set */ public void setOrgTel(String orgTel) { this.orgTel = orgTel; } /** * @return the orgLogoPath */ public String getOrgLogoPath() { return orgLogoPath; } /** * @param orgLogoPath the orgLogoPath to set */ public void setOrgLogoPath(String orgLogoPath) { this.orgLogoPath = orgLogoPath; } /** * @return the orgType */ public short getOrgType() { return orgType; } /** * @param orgType the orgType to set */ public void setOrgType(short orgType) { this.orgType = orgType; } /** * @return the visitorFlag */ public boolean isVisitorFlag() { return visitorFlag; } /** * @param visitorFlag the visitorFlag to set */ public void setVisitorFlag(boolean visitorFlag) { this.visitorFlag = visitorFlag; } /** * @return the firstFlag */ public boolean isFirstFlag() { return firstFlag; } /** * @param firstFlag the firstFlag to set */ public void setFirstFlag(boolean firstFlag) { this.firstFlag = firstFlag; } /** * @return the uniqueCode */ public String getUniqueCode() { return uniqueCode; } /** * @param uniqueCode the uniqueCode to set */ public void setUniqueCode(String uniqueCode) { this.uniqueCode = uniqueCode; } /** * @return the signature */ public String getSignature() { return signature; } /** * @param signature the signature to set */ public void setSignature(String signature) { this.signature = signature; } /** * @return the realName */ public String getRealName() { return realName; } /** * @param realName the realName to set */ public void setRealName(String realName) { this.realName = realName; } /** * @return the easmobGroupId */ public String getEasmobGroupId() { return easmobGroupId; } /** * @param easmobGroupId the easmobGroupId to set */ public void setEasmobGroupId(String easmobGroupId) { this.easmobGroupId = easmobGroupId; } /** * @return the errorCode */ public Integer getErrorCode() { return errorCode; } /** * @param errorCode the errorCode to set */ public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getOrgCode() { return orgCode; } public void setOrgCode(String orgCode) { this.orgCode = orgCode; } public String getOpenId() { return openId; } public void setOpenId(String openId) { this.openId = openId; } public boolean getAppDownFlag() { return appDownFlag; } public void setAppDownFlag(boolean appDownFlag) { this.appDownFlag = appDownFlag; } }