Browse Source

[短信配置][修改]:添加appid查询字段

release_toaliyun_real
gongbiao 7 years ago
parent
commit
a8d3bb23c9
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      mallinkService/src/main/resources/mapper/WxMsgConfigMapper.xml

+ 7
- 1
mallinkService/src/main/resources/mapper/WxMsgConfigMapper.xml View File

@@ -92,7 +92,13 @@
<if test=" null != notifyurl ">
and `notifyurl` like concat('%', #{notifyurl},'%')
</if>
</if>

<if test=" null != appid ">
and `appid` = #{appid}

</if>

<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">


Loading…
Cancel
Save