|
|
@@ -30,6 +30,7 @@
|
|
|
a.interview_contact_phone as "interviewContactPhone",
|
|
|
a.apply_position_id as "applyPositionId",
|
|
|
a.interview_invite_time as "interviewInviteTime",
|
|
|
+ a.other_interview_address as "otherInterviewAddress",
|
|
|
c.id AS "cmCandidateTrack.id",
|
|
|
c.belong_owner AS "cmCandidateTrack.belongOwner",
|
|
|
c.contact_person AS "cmCandidateTrack.contactPerson",
|
|
|
@@ -183,7 +184,8 @@
|
|
|
interview_contact_person,
|
|
|
interview_contact_phone,
|
|
|
apply_position_id,
|
|
|
- interview_invite_time
|
|
|
+ interview_invite_time,
|
|
|
+ other_interview_address
|
|
|
) VALUES (
|
|
|
#{memberId},
|
|
|
#{positionId},
|
|
|
@@ -210,7 +212,8 @@
|
|
|
#{interviewContactPerson},
|
|
|
#{interviewContactPhone},
|
|
|
#{applyPositionId},
|
|
|
- #{interviewInviteTime}
|
|
|
+ #{interviewInviteTime},
|
|
|
+ #{otherInterviewAddress}
|
|
|
)
|
|
|
</insert>
|
|
|
|
|
|
@@ -240,7 +243,8 @@
|
|
|
<if test="interviewContactPerson != null">interview_contact_person = #{interviewContactPerson},</if>
|
|
|
<if test="interviewContactPhone != null">interview_contact_phone = #{interviewContactPhone},</if>
|
|
|
<if test="applyPositionId != null">apply_position_id = #{applyPositionId},</if>
|
|
|
- <if test="interviewInviteTime != null">interview_invite_time = #{interviewInviteTime}</if>
|
|
|
+ <if test="interviewInviteTime != null">interview_invite_time = #{interviewInviteTime},</if>
|
|
|
+ <if test="other_interview_address != null">interview_invite_time = #{otherInterviewAddress}</if>
|
|
|
</trim>
|
|
|
WHERE id = #{id}
|
|
|
</update>
|