insert into mall_brand(
`name`,
`list_pic_url`,
`simple_desc`,
`pic_url`,
`sort_order`,
`is_show`,
`floor_price`,
`app_list_pic_url`,
`is_new`,
`new_pic_url`,
`new_sort_order`)
values(
#{name},
#{listPicUrl},
#{simpleDesc},
#{picUrl},
#{sortOrder},
#{isShow},
#{floorPrice},
#{appListPicUrl},
#{isNew},
#{newPicUrl},
#{newSortOrder})
update mall_brand
`name` = #{name},
`list_pic_url` = #{listPicUrl},
`simple_desc` = #{simpleDesc},
`pic_url` = #{picUrl},
`sort_order` = #{sortOrder},
`is_show` = #{isShow},
`floor_price` = #{floorPrice},
`app_list_pic_url` = #{appListPicUrl},
`is_new` = #{isNew},
`new_pic_url` = #{newPicUrl},
`new_sort_order` = #{newSortOrder}
where id = #{id}
delete from mall_brand where id = #{value}
delete from mall_brand where id in
#{id}