Browse Source

面试简历列表

change 4 years ago
parent
commit
9525794a7c

+ 9 - 0
zhongzheng-system/src/main/resources/mapper/modules/recruit/RecruitInterviewMapper.xml

@@ -187,6 +187,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
                 #{item}
             </foreach>
         </if>
+        <if test="year!=null">
+            and r.year=#{year}
+        </if>
+        <if test="month!=null">
+            and r.month=#{month}
+        </if>
+        <if test="day!=null">
+            and r.day=#{day}
+        </if>
     </select>
 
     <select id="selectByListAll" parameterType="com.zhongzheng.modules.recruit.bo.RecruitInterviewQueryBo" resultMap="RecruitInterviewVoResult">