Browse Source

数据库迁移

liaoyongfei 4 years ago
parent
commit
9edfc84148

+ 3 - 3
mpwechatApp/src/main/java/com/liangjian11/wx/mp/modle/EsTagInfo.java

@@ -14,7 +14,7 @@ public class EsTagInfo {
     @JsonProperty(value = "id")
     @ApiModelProperty("系统标签id")
     @TableId(value = "id", type = IdType.AUTO)
-    private String id;
+    private Integer id;
 
     @JsonProperty(value = "TagId")
     @ApiModelProperty("标签id")
@@ -70,11 +70,11 @@ public class EsTagInfo {
         this.text = text;
     }
 
-    public String getId() {
+    public Integer getId() {
         return id;
     }
 
-    public void setId(String id) {
+    public void setId(Integer id) {
         this.id = id;
     }