Browse Source

[审批][修改][修改合同审核状态]

release_toaliyun_real
luozukai 6 years ago
parent
commit
dcc80dd67d
2 changed files with 5 additions and 1 deletions
  1. +3
    -0
      mallinkService/src/main/java/com/iformall/domain/vo/WxRentPropertyContractVo.java
  2. +2
    -1
      mallinkService/src/main/resources/mapper/WxRentContractMapper.xml

+ 3
- 0
mallinkService/src/main/java/com/iformall/domain/vo/WxRentPropertyContractVo.java View File

@@ -74,5 +74,8 @@ public class WxRentPropertyContractVo extends BaseEntity {

@io.swagger.annotations.ApiModelProperty(value = "物业费单价单位", name = "propertyPriceUnit")
private Integer propertyPriceUnit;

@io.swagger.annotations.ApiModelProperty(value = "审批流类型", name = "businessType")
private Integer businessType;
}


+ 2
- 1
mallinkService/src/main/resources/mapper/WxRentContractMapper.xml View File

@@ -326,7 +326,8 @@
select rc.id,rc.merchant_name,rc.rental_start_date,rc.rental_end_date,rc.`status`,
rc.price as rent_price,rc.contract_number,s.shop_number,rc.type,rc.apply_status,
rc.rent_shop_type,rc.rent_info,pc.price as property_price,rc.merchant_id,pc.`status` as property_status,
rc.price_unit as rent_price_unit,pc.price_unit as property_price_unit
rc.price_unit as rent_price_unit,pc.price_unit as property_price_unit,
rc.business_type businessType
from wx_rent_contract rc left join wx_property_contract pc on rc.id=pc.rent_contract_id
left join wx_shop s on rc.shop_id=s.id
<where>


Loading…
Cancel
Save