id_, parent_id_, name_, description_, create_on_, modify_on_, order_,status_
delete from help_center_catalog
where id_ = #{id,jdbcType=INTEGER}
delete from help_center_catalog
where id_ in #{ids}
insert into help_center_catalog (id_, parent_id_, name_,
description_, create_on_, modify_on_,
order_,status_)
values (#{id,jdbcType=INTEGER}, #{parentId,jdbcType=INTEGER},
#{text,jdbcType=VARCHAR},
#{description,jdbcType=VARCHAR}, #{createOn,jdbcType=TIMESTAMP}, #{modifyOn,jdbcType=TIMESTAMP},
#{order,jdbcType=INTEGER},#{status,jdbcType=INTEGER})
update help_center_catalog
parent_id_ = #{parentId,jdbcType=INTEGER},
name_ = #{text,jdbcType=VARCHAR},
description_ = #{description,jdbcType=VARCHAR},
create_on_ = #{createOn,jdbcType=TIMESTAMP},
modify_on_ = #{modifyOn,jdbcType=TIMESTAMP},
order_ = #{order,jdbcType=INTEGER},
status_ = #{status,jdbcType=INTEGER},
where id_ = #{id,jdbcType=INTEGER}