|
@@ -0,0 +1,250 @@
|
|
|
+package com.cooleshow.institution.stu.bean;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Author by pq, Date on 2023/9/14.
|
|
|
+ */
|
|
|
+public class ActivationCodeNumBean {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * current : 0
|
|
|
+ * extra : {"activationCode":"","activationPhone":"","activationStatus":true,"activationTime":"","activationUserId":0,"activationUserName":"","activeQuantity":0,"createTime":"","id":0,"purchaseCycle":0,"purchaseQuantity":0,"sendStatus":"","tenantAlbumId":0,"tenantAlbumPurchaseId":0,"tenantId":0,"updateTime":""}
|
|
|
+ * limit : 0
|
|
|
+ * next : true
|
|
|
+ * pages : 0
|
|
|
+ * prev : true
|
|
|
+ * rows : [{"activationCode":"","activationPhone":"","activationStatus":true,"activationTime":"","activationUserId":0,"activationUserName":"","activeQuantity":0,"createTime":"","id":0,"purchaseCycle":0,"purchaseQuantity":0,"sendStatus":"","tenantAlbumId":0,"tenantAlbumPurchaseId":0,"tenantId":0,"updateTime":""}]
|
|
|
+ * total : 0
|
|
|
+ */
|
|
|
+
|
|
|
+ private int current;
|
|
|
+ private int limit;
|
|
|
+ private boolean next;
|
|
|
+ private int pages;
|
|
|
+ private boolean prev;
|
|
|
+ private int total;
|
|
|
+ private List<RowsBean> rows;
|
|
|
+
|
|
|
+ public int getCurrent() {
|
|
|
+ return current;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrent(int current) {
|
|
|
+ this.current = current;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getLimit() {
|
|
|
+ return limit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLimit(int limit) {
|
|
|
+ this.limit = limit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isNext() {
|
|
|
+ return next;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNext(boolean next) {
|
|
|
+ this.next = next;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getPages() {
|
|
|
+ return pages;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPages(int pages) {
|
|
|
+ this.pages = pages;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isPrev() {
|
|
|
+ return prev;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrev(boolean prev) {
|
|
|
+ this.prev = prev;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTotal() {
|
|
|
+ return total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotal(int total) {
|
|
|
+ this.total = total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<RowsBean> getRows() {
|
|
|
+ return rows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRows(List<RowsBean> rows) {
|
|
|
+ this.rows = rows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class RowsBean {
|
|
|
+ /**
|
|
|
+ * activationCode :
|
|
|
+ * activationPhone :
|
|
|
+ * activationStatus : true
|
|
|
+ * activationTime :
|
|
|
+ * activationUserId : 0
|
|
|
+ * activationUserName :
|
|
|
+ * activeQuantity : 0
|
|
|
+ * createTime :
|
|
|
+ * id : 0
|
|
|
+ * purchaseCycle : 0
|
|
|
+ * purchaseQuantity : 0
|
|
|
+ * sendStatus :
|
|
|
+ * tenantAlbumId : 0
|
|
|
+ * tenantAlbumPurchaseId : 0
|
|
|
+ * tenantId : 0
|
|
|
+ * updateTime :
|
|
|
+ */
|
|
|
+
|
|
|
+ private String activationCode;
|
|
|
+ private String activationPhone;
|
|
|
+ private boolean activationStatus;
|
|
|
+ private String activationTime;
|
|
|
+ private int activationUserId;
|
|
|
+ private String activationUserName;
|
|
|
+ private int activeQuantity;
|
|
|
+ private String createTime;
|
|
|
+ private int id;
|
|
|
+ private int purchaseCycle;
|
|
|
+ private int purchaseQuantity;
|
|
|
+ private String sendStatus;
|
|
|
+ private int tenantAlbumId;
|
|
|
+ private int tenantAlbumPurchaseId;
|
|
|
+ private int tenantId;
|
|
|
+ private String updateTime;
|
|
|
+
|
|
|
+ public String getActivationCode() {
|
|
|
+ return activationCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivationCode(String activationCode) {
|
|
|
+ this.activationCode = activationCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActivationPhone() {
|
|
|
+ return activationPhone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivationPhone(String activationPhone) {
|
|
|
+ this.activationPhone = activationPhone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isActivationStatus() {
|
|
|
+ return activationStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivationStatus(boolean activationStatus) {
|
|
|
+ this.activationStatus = activationStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActivationTime() {
|
|
|
+ return activationTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivationTime(String activationTime) {
|
|
|
+ this.activationTime = activationTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getActivationUserId() {
|
|
|
+ return activationUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivationUserId(int activationUserId) {
|
|
|
+ this.activationUserId = activationUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActivationUserName() {
|
|
|
+ return activationUserName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivationUserName(String activationUserName) {
|
|
|
+ this.activationUserName = activationUserName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getActiveQuantity() {
|
|
|
+ return activeQuantity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActiveQuantity(int activeQuantity) {
|
|
|
+ this.activeQuantity = activeQuantity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(String createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(int id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getPurchaseCycle() {
|
|
|
+ return purchaseCycle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPurchaseCycle(int purchaseCycle) {
|
|
|
+ this.purchaseCycle = purchaseCycle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getPurchaseQuantity() {
|
|
|
+ return purchaseQuantity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPurchaseQuantity(int purchaseQuantity) {
|
|
|
+ this.purchaseQuantity = purchaseQuantity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSendStatus() {
|
|
|
+ return sendStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSendStatus(String sendStatus) {
|
|
|
+ this.sendStatus = sendStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTenantAlbumId() {
|
|
|
+ return tenantAlbumId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantAlbumId(int tenantAlbumId) {
|
|
|
+ this.tenantAlbumId = tenantAlbumId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTenantAlbumPurchaseId() {
|
|
|
+ return tenantAlbumPurchaseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantAlbumPurchaseId(int tenantAlbumPurchaseId) {
|
|
|
+ this.tenantAlbumPurchaseId = tenantAlbumPurchaseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getTenantId() {
|
|
|
+ return tenantId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantId(int tenantId) {
|
|
|
+ this.tenantId = tenantId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(String updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|