123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- 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<UserEntity.ResultList> 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<UserEntity.ResultList> getResultList() {
- return resultList;
- }
- public void setResultList(List<UserEntity.ResultList> 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 +
- '}';
- }
- }
|