瀏覽代碼

[合同管理][修改][business_id类型]

release_toaliyun_real
gongbiao 7 年之前
父節點
當前提交
0f27c2eb01
共有 2 個檔案被更改,包括 6 行新增6 行删除
  1. +3
    -3
      mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java
  2. +3
    -3
      mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java

+ 3
- 3
mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java 查看文件

@@ -99,7 +99,7 @@ public class WxPropertyContract implements Serializable {
private String brand; private String brand;
/*经营业态ID:参照wx_business表**/ /*经营业态ID:参照wx_business表**/
@io.swagger.annotations.ApiModelProperty(value="经营业态ID:参照wx_business表",name="businessId") @io.swagger.annotations.ApiModelProperty(value="经营业态ID:参照wx_business表",name="businessId")
private Long businessId;
private Integer businessId;
/*店铺类型:1直营店2加盟店3个体店4旗舰店**/ /*店铺类型:1直营店2加盟店3个体店4旗舰店**/
@io.swagger.annotations.ApiModelProperty(value="店铺类型:1直营店2加盟店3个体店4旗舰店",name="shopType") @io.swagger.annotations.ApiModelProperty(value="店铺类型:1直营店2加盟店3个体店4旗舰店",name="shopType")
private Integer shopType; private Integer shopType;
@@ -223,10 +223,10 @@ public class WxPropertyContract implements Serializable {
public void setBrand(String _brand) { public void setBrand(String _brand) {
brand = _brand; brand = _brand;
} }
public Long getBusinessId() {
public Integer getBusinessId() {
return businessId; return businessId;
} }
public void setBusinessId(Long _businessId) {
public void setBusinessId(Integer _businessId) {
businessId = _businessId; businessId = _businessId;
} }
public Integer getShopType() { public Integer getShopType() {


+ 3
- 3
mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java 查看文件

@@ -124,7 +124,7 @@ public class WxRentContract implements Serializable {
private String brand; private String brand;
/*经常业态ID**/ /*经常业态ID**/
@io.swagger.annotations.ApiModelProperty(value = "经常业态ID", name = "businessId") @io.swagger.annotations.ApiModelProperty(value = "经常业态ID", name = "businessId")
private Long businessId;
private Integer businessId;
/*店铺类型**/ /*店铺类型**/
@io.swagger.annotations.ApiModelProperty(value = "店铺类型", name = "shopType") @io.swagger.annotations.ApiModelProperty(value = "店铺类型", name = "shopType")
private Integer shopType; private Integer shopType;
@@ -292,11 +292,11 @@ public class WxRentContract implements Serializable {
brand = _brand; brand = _brand;
} }


public Long getBusinessId() {
public Integer getBusinessId() {
return businessId; return businessId;
} }


public void setBusinessId(Long _businessId) {
public void setBusinessId(Integer _businessId) {
businessId = _businessId; businessId = _businessId;
} }




Loading…
取消
儲存