美文网首页
记一次mybatis的坑

记一次mybatis的坑

作者: 绿草先森 | 来源:发表于2019-06-15 15:22 被阅读0次

<select id="getProjectIdsByCompanyId" parameterType="java.lang.Long" resultType="long">

  select distinct projectId from oil_credit_company_project where 1=1

<if test="companyId!=null and companyId !=0L">

          AND companyId = #{companyId}

</if>

</select>

基本类型参数  是没法判断空值的。

相关文章

网友评论

      本文标题:记一次mybatis的坑

      本文链接:https://www.haomeiwen.com/subject/fsubfctx.html