123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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> resultList;
- public class ResultList {
- }
- public List<ResultList> getResultList() {
- return resultList;
- }
- public void setResultList(List<ResultList> 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 + '\'' +
- '}';
- }
- }
|