wangfeng 6 years ago
parent
commit
a72f269a6d

+ 6 - 6
diagbotman-service/src/main/java/com/diagbot/entity/OpenedProducts.java

@@ -54,12 +54,12 @@ public class OpenedProducts implements Serializable {
     /**
      * 产品id
      */
-    private Integer productId;
+    private Long productId;
 
     /**
      * 用户id
      */
-    private Integer userId;
+    private Long userId;
 
     /**
      * 开通日期
@@ -134,19 +134,19 @@ public class OpenedProducts implements Serializable {
         this.modifier = modifier;
     }
 
-    public Integer getProductId() {
+    public Long getProductId() {
         return productId;
     }
 
-    public void setProductId(Integer productId) {
+    public void setProductId(Long productId) {
         this.productId = productId;
     }
 
-    public Integer getUserId() {
+    public Long getUserId() {
         return userId;
     }
 
-    public void setUserId(Integer userId) {
+    public void setUserId(Long userId) {
         this.userId = userId;
     }