insert into examine_staff_project(
es_id,esp_id,community_id,project_id
) values (
#{esId},#{espId},#{communityId},#{projectId}
)
update examine_staff_project t set t.status_cd = #{statusCd}
,t.b_id = #{newBId}
, t.project_id= #{projectId}
where 1=1
and t.esp_id= #{espId}
and t.es_id= #{esId}
and t.community_id= #{communityId}