insert into supplier(
supplier_name,person_name,supplier_id,st_id,bean_name,start_time,remark,end_time,person_tel
) values (
#{supplierName},#{personName},#{supplierId},#{stId},#{beanName},#{startTime},#{remark},#{endTime},#{personTel}
)
update supplier t set t.status_cd = #{statusCd}
,t.b_id = #{newBId}
, t.supplier_name= #{supplierName}
, t.person_name= #{personName}
, t.st_id= #{stId}
, t.bean_name= #{beanName}
, t.start_time= #{startTime}
, t.remark= #{remark}
, t.end_time= #{endTime}
, t.person_tel= #{personTel}
where 1=1
and t.supplier_id= #{supplierId}