|
@@ -0,0 +1,36 @@
|
|
|
+package cn.kdan.pdf.tech.core.pojo.vo;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class SubscriptionResVO {
|
|
|
+ private Integer productId;
|
|
|
+ private String status;
|
|
|
+ private Integer price;
|
|
|
+ private String buyerType;
|
|
|
+ private String cdkey;
|
|
|
+ private String email;
|
|
|
+ private String phone;
|
|
|
+ private String contactName;
|
|
|
+ private String companyName;
|
|
|
+ private Long startDate;
|
|
|
+ private Long endDate;
|
|
|
+ private Long createdAt;
|
|
|
+ private Integer maxDeviceAmount;
|
|
|
+ private Integer cnyPrice;
|
|
|
+ private Integer couponId;
|
|
|
+ private String cdkeyType;
|
|
|
+ private String upgradeCdkey;
|
|
|
+ private String forReason;
|
|
|
+ private Integer lastSubId;
|
|
|
+ private String payment;
|
|
|
+ private Integer originalPrice;
|
|
|
+ private Integer cnyOriginalPrice;
|
|
|
+ private Boolean isVpp;
|
|
|
+ private String vppMemberId;
|
|
|
+ private Integer companyId;
|
|
|
+ private Integer upgradeByCheckbox;
|
|
|
+ private Integer activationLimit;
|
|
|
+ private String uniqueSn;
|
|
|
+ private String teamPlan;
|
|
|
+}
|