insert into examine_staff_introduction(
esi_id,community_id,staff_id,introduction
) values (
#{esiId},#{communityId},#{staffId},#{introduction}
)
update examine_staff_introduction t set t.status_cd = #{statusCd}
,t.b_id = #{newBId}
, t.introduction= #{introduction}
where 1=1
and t.esi_id= #{esiId}
and t.community_id= #{communityId}
and t.staff_id= #{staffId}