码迷,mamicode.com
首页 > 其他好文 > 详细

【mybatis】mybatis中的<if test=“”>test中多条件

时间:2018-05-29 10:59:25      阅读:3872      评论:0      收藏:0      [点我收藏+]

标签:param   nbsp   name   and   test   lun   from   lap   date   

mybatis中的<if test=“”>test中多条件 

代码展示:

其中

accountCode和apiName
都是ApiAllRespBean的属性
<select
            id="getAllApiByApiName"
            parameterType="pisen.cloud.luna.ms.account.api.beans.ApiAllRespBean"
            resultType="pisen.cloud.luna.ms.account.api.beans.ApiAllRespBean">

        SELECT

        ad.name apiName,
        ad.uid apiUid,
        aa.account_code accountCode,
        aa.expire_date expireDate,
        aa.expire_time expireTime,
        aa.freeze_time freezeTime

        FROM
        account_api aa

        INNER JOIN api_detail ad on aa.api_uid = ad.uid

        WHERE
        account_code = #{accountCode}

        <if test="apiName != null  and apiName != ‘‘">
            AND ad.name like % #{apiName} %
        </if>


    </select>

 

【mybatis】mybatis中的<if test=“”>test中多条件

标签:param   nbsp   name   and   test   lun   from   lap   date   

原文地址:https://www.cnblogs.com/sxdcgaq8080/p/9103820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!