|
@@ -81,6 +81,10 @@ public class OpenedProducts implements Serializable {
|
|
|
*/
|
|
|
private Integer orderId;
|
|
|
|
|
|
+ private Integer accessType;
|
|
|
+
|
|
|
+ private Integer chargeType;
|
|
|
+
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -178,6 +182,22 @@ public class OpenedProducts implements Serializable {
|
|
|
this.orderId = orderId;
|
|
|
}
|
|
|
|
|
|
+ public Integer getAccessType() {
|
|
|
+ return accessType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccessType(Integer accessType) {
|
|
|
+ this.accessType = accessType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getChargeType() {
|
|
|
+ return chargeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setChargeType(Integer chargeType) {
|
|
|
+ this.chargeType = chargeType;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "OpenedProducts{" +
|
|
@@ -193,6 +213,8 @@ public class OpenedProducts implements Serializable {
|
|
|
", endTime=" + endTime +
|
|
|
", serviceStatus=" + serviceStatus +
|
|
|
", orderId=" + orderId +
|
|
|
+ ", accessType=" + accessType +
|
|
|
+ ", chargeType=" + chargeType +
|
|
|
"}";
|
|
|
}
|
|
|
}
|