Browse Source

[微信开发平台][修改]:授权查询

release_toaliyun_real
Stormeye Wu 7 years ago
parent
commit
06f0119dd4
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      mallinkService/src/main/resources/mapper/WxAuthorizerInfoMapper.xml

+ 5
- 2
mallinkService/src/main/resources/mapper/WxAuthorizerInfoMapper.xml View File

@@ -105,11 +105,14 @@
<if test=" null != name "> <if test=" null != name ">
and a.`name` like concat('%', #{name},'%') and a.`name` like concat('%', #{name},'%')
</if> </if>
<if test=" null != type ">
and a.`type` = #{type}
</if>
<if test=" null != authorizerAppid "> <if test=" null != authorizerAppid ">
and ai.`authorizer_appid` = #{authorizerAppid} and ai.`authorizer_appid` = #{authorizerAppid}
</if> </if>
<if test=" null != type ">
and a.`type` = #{type}
<if test=" null != authorizationStatus ">
and ai.`authorization_status` = #{authorizationStatus}
</if> </if>
<if test=" null != currentVersion "> <if test=" null != currentVersion ">
and ai.`current_version` = #{currentVersion} and ai.`current_version` = #{currentVersion}


Loading…
Cancel
Save