package com.example.myapplication.model.entity; import java.util.List; public class UserRegisterEntity { //{"result":{"code":0,"modelInfo":null,"msg":"验证码过期,注册失败","other":"","resultList":[]}} private int code; private String modelInfo; private String msg; private String other; private List resultList; public class ResultList { } public List getResultList() { return resultList; } public void setResultList(List resultList) { this.resultList = resultList; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getModelInfo() { return modelInfo; } public void setModelInfo(String modelInfo) { this.modelInfo = modelInfo; } 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; } @Override public String toString() { return "UserRegisterEntity{" + "code='" + code + '\'' + ", modelInfo='" + modelInfo + '\'' + ", msg='" + msg + '\'' + ", other='" + other + '\'' + '}'; } }