INSERT INTO f_about (company_info_id, section_type, title_zh, title_en, content_zh, content_en,
image_path, is_published, sort_order, create_by, remark)
VALUES (#{companyInfoId}, #{sectionType}, #{titleZh}, #{titleEn}, #{contentZh}, #{contentEn},
#{imagePath}, #{isPublished}, #{sortOrder}, #{createBy}, #{remark})
UPDATE f_about
company_info_id = #{companyInfoId},
section_type = #{sectionType},
title_zh = #{titleZh},
title_en = #{titleEn},
content_zh = #{contentZh},
content_en = #{contentEn},
image_path = #{imagePath},
is_published = #{isPublished},
sort_order = #{sortOrder},
update_by = #{updateBy},
remark = #{remark},
WHERE about_id = #{aboutId} AND del_flag = 0
UPDATE f_about SET del_flag = 1 WHERE about_id = #{id}