diff --git a/mallinkAdmin/src/main/resources/db/migration/V201907241543__G_ALTER_SHOP.sql b/mallinkAdmin/src/main/resources/db/migration/V201907241543__G_ALTER_SHOP.sql new file mode 100644 index 000000000..c24a0102d --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V201907241543__G_ALTER_SHOP.sql @@ -0,0 +1 @@ +alter table wx_shop modify `rent` varchar(20) DEFAULT '' COMMENT '参与租金'; \ No newline at end of file diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxShop.java b/mallinkService/src/main/java/com/iformall/domain/po/WxShop.java index 721e41061..af7f1d16a 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxShop.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxShop.java @@ -126,7 +126,7 @@ public class WxShop extends BaseEntity { private Integer freeDay; @io.swagger.annotations.ApiModelProperty(value = "参考租金", name = "rent") - private Integer rent; + private String rent; @io.swagger.annotations.ApiModelProperty(value = "预置业态", name = "businessId") private Long businessId;