MyBatis - @Param 注解对象是否使用区别?

发布时间:2024年01月15日

不使用注解@Param?

List<LogBO> listUserTenantLogs(LogQuery logQuery);
<select id="listUserTenantLogs">
    SELECT * FROM t_user
    <where>
        <if test="code != null and code != ''">
            AND code = #{code}
        </if>
    </where>
</select>

使用注解@Param

List<LogBO> listUserTenantLogs(@Param("logQuery") LogQuery logQuery);
<select id="listUserTenantLogs">
    SELECT * FROM t_user
    <where>
        <if test="logQuery.code != null and logQuery.code != ''">
            AND code = #{logQuery.code}
        </if>
    </where>
</select>

总结

  • 使用注解时,XML 必须添加对应的注解 value.xxx 才行?

文章来源:https://blog.csdn.net/Dream_Weave/article/details/135595946
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。