ソースを参照

[租赁物业合同][修改][列表添加商户ID字段]

release_toaliyun_real
gongbiao 7年前
コミット
a8bd77c9aa
2個のファイルの変更4行の追加1行の削除
  1. +2
    -0
      mallinkService/src/main/java/com/iformall/domain/vo/WxRentPropertyContractVo.java
  2. +2
    -1
      mallinkService/src/main/resources/mapper/WxRentContractMapper.xml

+ 2
- 0
mallinkService/src/main/java/com/iformall/domain/vo/WxRentPropertyContractVo.java ファイルの表示

@@ -71,6 +71,8 @@ public class WxRentPropertyContractVo extends BaseEntity {
@io.swagger.annotations.ApiModelProperty(value = "租赁商铺类型1店铺2多经点位", name = "rentShopType")
private Integer rentShopType;

@io.swagger.annotations.ApiModelProperty(value = "商户ID", name = "merchantId")
private Long merchantId;

}


+ 2
- 1
mallinkService/src/main/resources/mapper/WxRentContractMapper.xml ファイルの表示

@@ -315,13 +315,14 @@
<result column="apply_status" property="applyStatus"/>
<result column="operation_type" property="operationType"/>
<result column="rent_shop_type" property="rentShopType"/>
<result column="merchant_id" property="merchantId"/>
</resultMap>
<select id="listContractVo" parameterType="com.iformall.domain.vo.WxRentPropertyContractVo" resultMap="contractMap">
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.rent_shop_type,rc.rent_info,pc.price as property_price,rc.merchant_id
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>


読み込み中…
キャンセル
保存