添加工作经历-添加查询条件

This commit is contained in:
sh
2025-10-16 19:39:06 +08:00
parent ac2d427a71
commit da48a9c33a
2 changed files with 7 additions and 1 deletions

View File

@@ -31,6 +31,7 @@
<if test="companyName != null and companyName != ''"> and company_name like concat('%', #{companyName}, '%')</if>
<if test="position != null and position != ''"> and position = #{position}</if>
<if test="description != null and description != ''"> and description = #{description}</if>
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
</where>
</select>