|
@@ -0,0 +1,619 @@
|
|
|
+package com.cooleshow.base.bean;
|
|
|
+
|
|
|
+import android.os.Parcel;
|
|
|
+import android.os.Parcelable;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Author by pq, Date on 2023/9/15.
|
|
|
+ */
|
|
|
+public class StudentPageListBean implements Parcelable {
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * footer : [{"age":0,"avatar":"","birthdate":"","cloudStudySequenceDays":0,"cloudStudyUseLastDay":"","createTime":"","delFlag":"","evaluateTime":0,"gender":"","hideFlag":0,"idCardNo":"","imToken":"","isBank":"","isReal":"","isVip":"","lockFlag":"","memberRankSettingId":0,"membershipEndTime":"","membershipStartTime":"","phone":"","realName":"","sendActiveCodeNum":0,"subjectId":"","subjectName":"","tenantId":0,"tenantName":"","trainTime":0,"unionId":0,"updateTime":"","userId":0,"userStatus":"","userType":"","username":""}]
|
|
|
+ * limit : 0
|
|
|
+ * nextPage : 0
|
|
|
+ * offset : 0
|
|
|
+ * pageNo : 0
|
|
|
+ * prePage : 0
|
|
|
+ * rows : [{"age":0,"avatar":"","birthdate":"","cloudStudySequenceDays":0,"cloudStudyUseLastDay":"","createTime":"","delFlag":"","evaluateTime":0,"gender":"","hideFlag":0,"idCardNo":"","imToken":"","isBank":"","isReal":"","isVip":"","lockFlag":"","memberRankSettingId":0,"membershipEndTime":"","membershipStartTime":"","phone":"","realName":"","sendActiveCodeNum":0,"subjectId":"","subjectName":"","tenantId":0,"tenantName":"","trainTime":0,"unionId":0,"updateTime":"","userId":0,"userStatus":"","userType":"","username":""}]
|
|
|
+ * statInfo : {}
|
|
|
+ * total : 0
|
|
|
+ * totalPage : 0
|
|
|
+ */
|
|
|
+
|
|
|
+ private int limit;
|
|
|
+ private int nextPage;
|
|
|
+ private int offset;
|
|
|
+ private int pageNo;
|
|
|
+ private int prePage;
|
|
|
+ private int total;
|
|
|
+ private int totalPage;
|
|
|
+ private List<RowsBean> rows;
|
|
|
+
|
|
|
+ public int getLimit() {
|
|
|
+ return limit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLimit(int limit) {
|
|
|
+ this.limit = limit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getNextPage() {
|
|
|
+ return nextPage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNextPage(int nextPage) {
|
|
|
+ this.nextPage = nextPage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getOffset() {
|
|
|
+ return offset;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOffset(int offset) {
|
|
|
+ this.offset = offset;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getPageNo() {
|
|
|
+ return pageNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageNo(int pageNo) {
|
|
|
+ this.pageNo = pageNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getPrePage() {
|
|
|
+ return prePage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrePage(int prePage) {
|
|
|
+ this.prePage = prePage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTotal() {
|
|
|
+ return total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotal(int total) {
|
|
|
+ this.total = total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTotalPage() {
|
|
|
+ return totalPage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalPage(int totalPage) {
|
|
|
+ this.totalPage = totalPage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<RowsBean> getRows() {
|
|
|
+ return rows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRows(List<RowsBean> rows) {
|
|
|
+ this.rows = rows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class RowsBean implements Parcelable {
|
|
|
+ /**
|
|
|
+ * age : 0
|
|
|
+ * avatar :
|
|
|
+ * birthdate :
|
|
|
+ * cloudStudySequenceDays : 0
|
|
|
+ * cloudStudyUseLastDay :
|
|
|
+ * createTime :
|
|
|
+ * delFlag :
|
|
|
+ * evaluateTime : 0
|
|
|
+ * gender :
|
|
|
+ * hideFlag : 0
|
|
|
+ * idCardNo :
|
|
|
+ * imToken :
|
|
|
+ * isBank :
|
|
|
+ * isReal :
|
|
|
+ * isVip :
|
|
|
+ * lockFlag :
|
|
|
+ * memberRankSettingId : 0
|
|
|
+ * membershipEndTime :
|
|
|
+ * membershipStartTime :
|
|
|
+ * phone :
|
|
|
+ * realName :
|
|
|
+ * sendActiveCodeNum : 0
|
|
|
+ * subjectId :
|
|
|
+ * subjectName :
|
|
|
+ * tenantId : 0
|
|
|
+ * tenantName :
|
|
|
+ * trainTime : 0
|
|
|
+ * unionId : 0
|
|
|
+ * updateTime :
|
|
|
+ * userId : 0
|
|
|
+ * userStatus :
|
|
|
+ * userType :
|
|
|
+ * username :
|
|
|
+ */
|
|
|
+
|
|
|
+ private int age;
|
|
|
+ private String avatar;
|
|
|
+ private String birthdate;
|
|
|
+ private int cloudStudySequenceDays;
|
|
|
+ private String cloudStudyUseLastDay;
|
|
|
+ private String createTime;
|
|
|
+ private String delFlag;
|
|
|
+ private int evaluateTime;
|
|
|
+ private String gender;
|
|
|
+ private int hideFlag;
|
|
|
+ private String idCardNo;
|
|
|
+ private String imToken;
|
|
|
+ private String isBank;
|
|
|
+ private String isReal;
|
|
|
+ private String isVip;
|
|
|
+ private String lockFlag;
|
|
|
+ private int memberRankSettingId;
|
|
|
+ private String membershipEndTime;
|
|
|
+ private String membershipStartTime;
|
|
|
+ private String phone;
|
|
|
+ private String realName;
|
|
|
+ private int sendActiveCodeNum;
|
|
|
+ private String subjectId;
|
|
|
+ private String subjectName;
|
|
|
+ private String tenantId;
|
|
|
+ private String tenantName;
|
|
|
+ private int trainTime;
|
|
|
+ private String unionId;
|
|
|
+ private String updateTime;
|
|
|
+ private String userId;
|
|
|
+ private String userStatus;
|
|
|
+ private String userType;
|
|
|
+ private String username;
|
|
|
+
|
|
|
+ public int getAge() {
|
|
|
+ return age;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAge(int age) {
|
|
|
+ this.age = age;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAvatar() {
|
|
|
+ return avatar;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAvatar(String avatar) {
|
|
|
+ this.avatar = avatar;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBirthdate() {
|
|
|
+ return birthdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBirthdate(String birthdate) {
|
|
|
+ this.birthdate = birthdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getCloudStudySequenceDays() {
|
|
|
+ return cloudStudySequenceDays;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCloudStudySequenceDays(int cloudStudySequenceDays) {
|
|
|
+ this.cloudStudySequenceDays = cloudStudySequenceDays;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCloudStudyUseLastDay() {
|
|
|
+ return cloudStudyUseLastDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCloudStudyUseLastDay(String cloudStudyUseLastDay) {
|
|
|
+ this.cloudStudyUseLastDay = cloudStudyUseLastDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(String createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDelFlag() {
|
|
|
+ return delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDelFlag(String delFlag) {
|
|
|
+ this.delFlag = delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getEvaluateTime() {
|
|
|
+ return evaluateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEvaluateTime(int evaluateTime) {
|
|
|
+ this.evaluateTime = evaluateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGender() {
|
|
|
+ return gender;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGender(String gender) {
|
|
|
+ this.gender = gender;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getHideFlag() {
|
|
|
+ return hideFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHideFlag(int hideFlag) {
|
|
|
+ this.hideFlag = hideFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIdCardNo() {
|
|
|
+ return idCardNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdCardNo(String idCardNo) {
|
|
|
+ this.idCardNo = idCardNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getImToken() {
|
|
|
+ return imToken;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImToken(String imToken) {
|
|
|
+ this.imToken = imToken;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsBank() {
|
|
|
+ return isBank;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsBank(String isBank) {
|
|
|
+ this.isBank = isBank;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsReal() {
|
|
|
+ return isReal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsReal(String isReal) {
|
|
|
+ this.isReal = isReal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsVip() {
|
|
|
+ return isVip;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsVip(String isVip) {
|
|
|
+ this.isVip = isVip;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLockFlag() {
|
|
|
+ return lockFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLockFlag(String lockFlag) {
|
|
|
+ this.lockFlag = lockFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getMemberRankSettingId() {
|
|
|
+ return memberRankSettingId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMemberRankSettingId(int memberRankSettingId) {
|
|
|
+ this.memberRankSettingId = memberRankSettingId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMembershipEndTime() {
|
|
|
+ return membershipEndTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMembershipEndTime(String membershipEndTime) {
|
|
|
+ this.membershipEndTime = membershipEndTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMembershipStartTime() {
|
|
|
+ return membershipStartTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMembershipStartTime(String membershipStartTime) {
|
|
|
+ this.membershipStartTime = membershipStartTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhone() {
|
|
|
+ return phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhone(String phone) {
|
|
|
+ this.phone = phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRealName() {
|
|
|
+ return realName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRealName(String realName) {
|
|
|
+ this.realName = realName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getSendActiveCodeNum() {
|
|
|
+ return sendActiveCodeNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSendActiveCodeNum(int sendActiveCodeNum) {
|
|
|
+ this.sendActiveCodeNum = sendActiveCodeNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectId() {
|
|
|
+ return subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(String subjectId) {
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectName() {
|
|
|
+ return subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectName(String subjectName) {
|
|
|
+ this.subjectName = subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTenantId() {
|
|
|
+ return tenantId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantId(String tenantId) {
|
|
|
+ this.tenantId = tenantId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTenantName() {
|
|
|
+ return tenantName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantName(String tenantName) {
|
|
|
+ this.tenantName = tenantName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTrainTime() {
|
|
|
+ return trainTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTrainTime(int trainTime) {
|
|
|
+ this.trainTime = trainTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnionId() {
|
|
|
+ return unionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnionId(String unionId) {
|
|
|
+ this.unionId = unionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(String updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(String userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserStatus() {
|
|
|
+ return userStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserStatus(String userStatus) {
|
|
|
+ this.userStatus = userStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserType() {
|
|
|
+ return userType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserType(String userType) {
|
|
|
+ this.userType = userType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUsername() {
|
|
|
+ return username;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUsername(String username) {
|
|
|
+ this.username = username;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int describeContents() {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void writeToParcel(Parcel dest, int flags) {
|
|
|
+ dest.writeInt(this.age);
|
|
|
+ dest.writeString(this.avatar);
|
|
|
+ dest.writeString(this.birthdate);
|
|
|
+ dest.writeInt(this.cloudStudySequenceDays);
|
|
|
+ dest.writeString(this.cloudStudyUseLastDay);
|
|
|
+ dest.writeString(this.createTime);
|
|
|
+ dest.writeString(this.delFlag);
|
|
|
+ dest.writeInt(this.evaluateTime);
|
|
|
+ dest.writeString(this.gender);
|
|
|
+ dest.writeInt(this.hideFlag);
|
|
|
+ dest.writeString(this.idCardNo);
|
|
|
+ dest.writeString(this.imToken);
|
|
|
+ dest.writeString(this.isBank);
|
|
|
+ dest.writeString(this.isReal);
|
|
|
+ dest.writeString(this.isVip);
|
|
|
+ dest.writeString(this.lockFlag);
|
|
|
+ dest.writeInt(this.memberRankSettingId);
|
|
|
+ dest.writeString(this.membershipEndTime);
|
|
|
+ dest.writeString(this.membershipStartTime);
|
|
|
+ dest.writeString(this.phone);
|
|
|
+ dest.writeString(this.realName);
|
|
|
+ dest.writeInt(this.sendActiveCodeNum);
|
|
|
+ dest.writeString(this.subjectId);
|
|
|
+ dest.writeString(this.subjectName);
|
|
|
+ dest.writeString(this.tenantId);
|
|
|
+ dest.writeString(this.tenantName);
|
|
|
+ dest.writeInt(this.trainTime);
|
|
|
+ dest.writeString(this.unionId);
|
|
|
+ dest.writeString(this.updateTime);
|
|
|
+ dest.writeString(this.userId);
|
|
|
+ dest.writeString(this.userStatus);
|
|
|
+ dest.writeString(this.userType);
|
|
|
+ dest.writeString(this.username);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void readFromParcel(Parcel source) {
|
|
|
+ this.age = source.readInt();
|
|
|
+ this.avatar = source.readString();
|
|
|
+ this.birthdate = source.readString();
|
|
|
+ this.cloudStudySequenceDays = source.readInt();
|
|
|
+ this.cloudStudyUseLastDay = source.readString();
|
|
|
+ this.createTime = source.readString();
|
|
|
+ this.delFlag = source.readString();
|
|
|
+ this.evaluateTime = source.readInt();
|
|
|
+ this.gender = source.readString();
|
|
|
+ this.hideFlag = source.readInt();
|
|
|
+ this.idCardNo = source.readString();
|
|
|
+ this.imToken = source.readString();
|
|
|
+ this.isBank = source.readString();
|
|
|
+ this.isReal = source.readString();
|
|
|
+ this.isVip = source.readString();
|
|
|
+ this.lockFlag = source.readString();
|
|
|
+ this.memberRankSettingId = source.readInt();
|
|
|
+ this.membershipEndTime = source.readString();
|
|
|
+ this.membershipStartTime = source.readString();
|
|
|
+ this.phone = source.readString();
|
|
|
+ this.realName = source.readString();
|
|
|
+ this.sendActiveCodeNum = source.readInt();
|
|
|
+ this.subjectId = source.readString();
|
|
|
+ this.subjectName = source.readString();
|
|
|
+ this.tenantId = source.readString();
|
|
|
+ this.tenantName = source.readString();
|
|
|
+ this.trainTime = source.readInt();
|
|
|
+ this.unionId = source.readString();
|
|
|
+ this.updateTime = source.readString();
|
|
|
+ this.userId = source.readString();
|
|
|
+ this.userStatus = source.readString();
|
|
|
+ this.userType = source.readString();
|
|
|
+ this.username = source.readString();
|
|
|
+ }
|
|
|
+
|
|
|
+ public RowsBean() {
|
|
|
+ }
|
|
|
+
|
|
|
+ protected RowsBean(Parcel in) {
|
|
|
+ this.age = in.readInt();
|
|
|
+ this.avatar = in.readString();
|
|
|
+ this.birthdate = in.readString();
|
|
|
+ this.cloudStudySequenceDays = in.readInt();
|
|
|
+ this.cloudStudyUseLastDay = in.readString();
|
|
|
+ this.createTime = in.readString();
|
|
|
+ this.delFlag = in.readString();
|
|
|
+ this.evaluateTime = in.readInt();
|
|
|
+ this.gender = in.readString();
|
|
|
+ this.hideFlag = in.readInt();
|
|
|
+ this.idCardNo = in.readString();
|
|
|
+ this.imToken = in.readString();
|
|
|
+ this.isBank = in.readString();
|
|
|
+ this.isReal = in.readString();
|
|
|
+ this.isVip = in.readString();
|
|
|
+ this.lockFlag = in.readString();
|
|
|
+ this.memberRankSettingId = in.readInt();
|
|
|
+ this.membershipEndTime = in.readString();
|
|
|
+ this.membershipStartTime = in.readString();
|
|
|
+ this.phone = in.readString();
|
|
|
+ this.realName = in.readString();
|
|
|
+ this.sendActiveCodeNum = in.readInt();
|
|
|
+ this.subjectId = in.readString();
|
|
|
+ this.subjectName = in.readString();
|
|
|
+ this.tenantId = in.readString();
|
|
|
+ this.tenantName = in.readString();
|
|
|
+ this.trainTime = in.readInt();
|
|
|
+ this.unionId = in.readString();
|
|
|
+ this.updateTime = in.readString();
|
|
|
+ this.userId = in.readString();
|
|
|
+ this.userStatus = in.readString();
|
|
|
+ this.userType = in.readString();
|
|
|
+ this.username = in.readString();
|
|
|
+ }
|
|
|
+
|
|
|
+ public static final Parcelable.Creator<RowsBean> CREATOR = new Parcelable.Creator<RowsBean>() {
|
|
|
+ @Override
|
|
|
+ public RowsBean createFromParcel(Parcel source) {
|
|
|
+ return new RowsBean(source);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public RowsBean[] newArray(int size) {
|
|
|
+ return new RowsBean[size];
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int describeContents() {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void writeToParcel(Parcel dest, int flags) {
|
|
|
+ dest.writeInt(this.limit);
|
|
|
+ dest.writeInt(this.nextPage);
|
|
|
+ dest.writeInt(this.offset);
|
|
|
+ dest.writeInt(this.pageNo);
|
|
|
+ dest.writeInt(this.prePage);
|
|
|
+ dest.writeInt(this.total);
|
|
|
+ dest.writeInt(this.totalPage);
|
|
|
+ dest.writeTypedList(this.rows);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void readFromParcel(Parcel source) {
|
|
|
+ this.limit = source.readInt();
|
|
|
+ this.nextPage = source.readInt();
|
|
|
+ this.offset = source.readInt();
|
|
|
+ this.pageNo = source.readInt();
|
|
|
+ this.prePage = source.readInt();
|
|
|
+ this.total = source.readInt();
|
|
|
+ this.totalPage = source.readInt();
|
|
|
+ this.rows = source.createTypedArrayList(RowsBean.CREATOR);
|
|
|
+ }
|
|
|
+
|
|
|
+ public StudentPageListBean() {
|
|
|
+ }
|
|
|
+
|
|
|
+ protected StudentPageListBean(Parcel in) {
|
|
|
+ this.limit = in.readInt();
|
|
|
+ this.nextPage = in.readInt();
|
|
|
+ this.offset = in.readInt();
|
|
|
+ this.pageNo = in.readInt();
|
|
|
+ this.prePage = in.readInt();
|
|
|
+ this.total = in.readInt();
|
|
|
+ this.totalPage = in.readInt();
|
|
|
+ this.rows = in.createTypedArrayList(RowsBean.CREATOR);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static final Parcelable.Creator<StudentPageListBean> CREATOR = new Parcelable.Creator<StudentPageListBean>() {
|
|
|
+ @Override
|
|
|
+ public StudentPageListBean createFromParcel(Parcel source) {
|
|
|
+ return new StudentPageListBean(source);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public StudentPageListBean[] newArray(int size) {
|
|
|
+ return new StudentPageListBean[size];
|
|
|
+ }
|
|
|
+ };
|
|
|
+}
|