|
@@ -51,6 +51,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="idCard != null">id_card,</if>
|
|
|
<if test="phoneNum != null">phone_num,</if>
|
|
|
<if test="deptId != null">dept_id,</if>
|
|
|
+
|
|
|
+ <if test="jobStyle != null">job_style,</if>
|
|
|
+ <if test="focusCrowdStyle != null">focus_crowd_style,</if>
|
|
|
+
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -62,6 +66,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="idCard != null">#{idCard},</if>
|
|
|
<if test="phoneNum != null">#{phoneNum},</if>
|
|
|
<if test="deptId != null">#{deptId},</if>
|
|
|
+ <if test="jobStyle != null">#{jobStyle},</if>
|
|
|
+ <if test="focusCrowdStyle != null">#{focusCrowdStyle},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -77,6 +83,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="idCard != null">id_card = #{idCard},</if>
|
|
|
<if test="phoneNum != null">phone_num = #{phoneNum},</if>
|
|
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
+
|
|
|
+ <if test="jobStyle != null">job_style = #{jobStyle},</if>
|
|
|
+ <if test="focusCrowdStyle != null">focus_crowd_style = #{focusCrowdStyle},</if>
|
|
|
+
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|