insert into mall_category
(
`id`,
`name`,
`keywords`,
`front_desc`,
`parent_id`,
`sort_order`,
`show_index`,
`is_show`,
`banner_url`,
`icon_url`,
`img_url`,
`wap_banner_url`,
`level`,
`type`,
`front_name`
)
values
(
#{id},
#{name},
#{keywords},
#{front_desc},
#{parent_id},
#{sort_order},
#{show_index},
#{is_show},
#{banner_url},
#{icon_url},
#{img_url},
#{wap_banner_url},
#{level},
#{type},
#{front_name}
)
update mall_category
`name` = #{name},
`keywords` = #{keywords},
`front_desc` = #{front_desc},
`parent_id` = #{parent_id},
`sort_order` = #{sort_order},
`show_index` = #{show_index},
`is_show` = #{is_show},
`banner_url` = #{banner_url},
`icon_url` = #{icon_url},
`img_url` = #{img_url},
`wap_banner_url` = #{wap_banner_url},
`level` = #{level},
`type` = #{type},
`front_name` = #{front_name}
where id = #{id}