package com.example.myapplication.model.entity; import java.util.List; public class UserEntity { private int code; private String msg; private String other;//sessionId private List resultList; public class ResultList { } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getMsg() { return msg; } public void setMsg(String msg) { this.msg = msg; } public String getOther() { return other; } public void setOther(String other) { this.other = other; } public List getResultList() { return resultList; } public void setResultList(List resultList) { this.resultList = resultList; } public class ModelInfo { private String createtime;//创建时间 private String inUse;//是否可用1为可用 private String invitationcode;//邀请码 private String isMainAccount;//是否主显账号 private String mobilenumber;//登录手机号 private String mustchangepwd;//是否必须更改密码 0为不需要 private String password;//登录密码 private String uaUserinfoId; //用户ID private String usertype; //"企业用户" public String getCreatetime() { return createtime; } public void setCreatetime(String createtime) { this.createtime = createtime; } public String getInUse() { return inUse; } public void setInUse(String inUse) { this.inUse = inUse; } public String getInvitationcode() { return invitationcode; } public void setInvitationcode(String invitationcode) { this.invitationcode = invitationcode; } public String getIsMainAccount() { return isMainAccount; } public void setIsMainAccount(String isMainAccount) { this.isMainAccount = isMainAccount; } public String getMobilenumber() { return mobilenumber; } public void setMobilenumber(String mobilenumber) { this.mobilenumber = mobilenumber; } public String getMustchangepwd() { return mustchangepwd; } public void setMustchangepwd(String mustchangepwd) { this.mustchangepwd = mustchangepwd; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getUaUserinfoId() { return uaUserinfoId; } public void setUaUserinfoId(String uaUserinfoId) { this.uaUserinfoId = uaUserinfoId; } public String getUsertype() { return usertype; } public void setUsertype(String usertype) { this.usertype = usertype; } @Override public String toString() { return "ModelInfo{" + "createtime='" + createtime + '\'' + ", inUse='" + inUse + '\'' + ", invitationcode='" + invitationcode + '\'' + ", isMainAccount='" + isMainAccount + '\'' + ", mobilenumber='" + mobilenumber + '\'' + ", mustchangepwd='" + mustchangepwd + '\'' + ", password='" + password + '\'' + ", uaUserinfoId='" + uaUserinfoId + '\'' + ", usertype='" + usertype + '\'' + '}'; } } @Override public String toString() { return "UserLoginEntity{" + "code='" + code + '\'' + ", msg='" + msg + '\'' + ", other='" + other + '\'' + ", resultList=" + resultList + '}'; } }