select d.dept_id, d.parent_id, d.ancestors, d.dept_name,
d.order_num, d.leader, d.phone, d.email, d.status,
d.del_flag,d.platform_service_fee, d.is_profit_sharing, d.appid, d.app_secret,
d.merchant_id, d.api_v3_key, d.notify_url, d.private_key_path,d.merchant_serial_number,d.refund_notify_url,
d.create_by, d.create_time
from sys_dept d
insert into sys_dept(
dept_id,
parent_id,
dept_name,
ancestors,
order_num,
leader,
phone,
email,
status,
create_by,
platform_service_fee,
is_profit_sharing,
appid,
app_secret,
merchant_id,
api_v3_key,
notify_url,
private_key_path,
merchant_serial_number,
refund_notify_url,
create_time
)values(
#{deptId},
#{parentId},
#{deptName},
#{ancestors},
#{orderNum},
#{leader},
#{phone},
#{email},
#{status},
#{createBy},
#{platformServiceFee},
#{isProfitSharing},
#{appid},
#{appSecret},
#{merchantId},
#{apiV3Key},
#{notifyUrl},
#{privateKeyPath},
#{merchantSerialNumber},
#{refundNotifyUrl},
sysdate()
)
update sys_dept
parent_id = #{parentId},
dept_name = #{deptName},
ancestors = #{ancestors},
order_num = #{orderNum},
leader = #{leader},
phone = #{phone},
email = #{email},
status = #{status},
update_by = #{updateBy},
platform_service_fee = #{platformServiceFee},
is_profit_sharing = #{isProfitSharing},
appid = #{appid},
app_secret = #{appSecret},
merchant_id = #{merchantId},
api_v3_key = #{apiV3Key},
notify_url = #{notifyUrl},
private_key_path = #{privateKeyPath},
merchant_serial_number = #{merchantSerialNumber},
refund_notify_url = #{refundNotifyUrl},
update_time = sysdate()
where dept_id = #{deptId}
update sys_dept set ancestors =
when #{item.deptId} then #{item.ancestors}
where dept_id in
#{item.deptId}
update sys_dept set status = '0' where dept_id in
#{deptId}
update sys_dept set del_flag = '2' where dept_id = #{deptId}