Browse Source

[租赁合同][修改][账单添加营业额]

release_toaliyun_real
gongbiao 7 years ago
parent
commit
936040693c
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java
  2. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java

+ 3
- 3
mallinkService/src/main/java/com/iformall/domain/po/WxRentContract.java View File

@@ -198,7 +198,7 @@ public class WxRentContract implements Serializable {
private Integer payRatio;

@io.swagger.annotations.ApiModelProperty(value = "营业额", name = "revenue")
private Integer revenue;
private Long revenue;

@io.swagger.annotations.ApiModelProperty(value = "起租开始时间", name = "rentalStartDate")
private Date startDate;
@@ -550,11 +550,11 @@ public class WxRentContract implements Serializable {
this.payRatio = payRatio;
}

public Integer getRevenue() {
public Long getRevenue() {
return revenue;
}

public void setRevenue(Integer revenue) {
public void setRevenue(Long revenue) {
this.revenue = revenue;
}



+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java View File

@@ -1086,7 +1086,7 @@ public class WxRentContractServiceImpl implements WxRentContractService {
wxBillRent.setExpiredDay(0L);
}
}
wxBillRent.setRevenue(wxRentContract.getRevenue());
wxBillRent.setTenantId(wxMerchant.getTenantId());
wxBillRent.setIsDel(0);
wxBillRent.setMerchantId(wxMerchant.getId());


Loading…
Cancel
Save