Procházet zdrojové kódy

字段类型修改

zhaops před 6 roky
rodič
revize
82709bc609

+ 3 - 3
diagbotman-service/src/main/java/com/diagbot/entity/LantoneProduct.java

@@ -24,7 +24,7 @@ public class LantoneProduct implements Serializable {
      * 产品id
      */
     @TableId(value = "id", type = IdType.AUTO)
-    private Integer id;
+    private Long id;
 
     /**
      * 是否删除 N:未删除,Y:删除
@@ -92,11 +92,11 @@ public class LantoneProduct implements Serializable {
     private String accessType;
 
 
-    public Integer getId() {
+    public Long getId() {
         return id;
     }
 
-    public void setId(Integer id) {
+    public void setId(Long id) {
         this.id = id;
     }