1.修改求职者生日验证及参数验证

This commit is contained in:
sh
2025-11-25 16:38:02 +08:00
parent a9822c34fe
commit 46c78f72a4
5 changed files with 59 additions and 1 deletions

View File

@@ -133,7 +133,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
INNER join company e on c.company_id=e.company_id and e.del_flag='0'
<where>
<if test="name != null and name != ''"> and a.name like concat('%', cast(#{name, jdbcType=VARCHAR} as varchar), '%')</if>
<if test="birthDate != null "> and a.birth_date = #{birthDate}</if>
<if test="birthDate != null "> and get_birth_date_from_id_card(a.id_card) = #{birthDate}</if>
<if test="education != null and education != ''"> and a.education = #{education}</if>
<if test="politicalAffiliation != null and politicalAffiliation != ''"> and a.political_affiliation = #{politicalAffiliation}</if>
<if test="phone != null and phone != ''"> and a.phone = #{phone}</if>