diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java b/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java index 125ab99fd..5053ce15a 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java @@ -99,7 +99,7 @@ public class WxPropertyContract implements Serializable { private String brand; /*经营业态ID:参照wx_business表**/ @io.swagger.annotations.ApiModelProperty(value="经营业态ID:参照wx_business表",name="businessId") - private Long businessId; + private Integer businessId; /*店铺类型:1直营店2加盟店3个体店4旗舰店**/ @io.swagger.annotations.ApiModelProperty(value="店铺类型:1直营店2加盟店3个体店4旗舰店",name="shopType") private Integer shopType; @@ -223,10 +223,10 @@ public class WxPropertyContract implements Serializable { public void setBrand(String _brand) { brand = _brand; } - public Long getBusinessId() { + public Integer getBusinessId() { return businessId; } - public void setBusinessId(Long _businessId) { + public void setBusinessId(Integer _businessId) { businessId = _businessId; } public Integer getShopType() { diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java b/mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java index a66815511..fa9c30cbb 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java @@ -124,7 +124,7 @@ public class WxRentContract implements Serializable { private String brand; /*经常业态ID**/ @io.swagger.annotations.ApiModelProperty(value = "经常业态ID", name = "businessId") - private Long businessId; + private Integer businessId; /*店铺类型**/ @io.swagger.annotations.ApiModelProperty(value = "店铺类型", name = "shopType") private Integer shopType; @@ -292,11 +292,11 @@ public class WxRentContract implements Serializable { brand = _brand; } - public Long getBusinessId() { + public Integer getBusinessId() { return businessId; } - public void setBusinessId(Long _businessId) { + public void setBusinessId(Integer _businessId) { businessId = _businessId; }