insert into examine_project(
post_cd,post,name,weight,state,community_id,project_id
) values (
#{postCd},#{post},#{name},#{weight},#{state},#{communityId},#{projectId}
)
update examine_project t set t.status_cd = #{statusCd}
,t.b_id = #{newBId}
, t.post_cd= #{postCd}
, t.post= #{post}
, t.name= #{name}
, t.weight= #{weight}
, t.state= #{state}
, t.community_id= #{communityId}
where 1=1
and t.project_id= #{projectId}