<update id="updateShop" parameterType="Shop"> UPDATE `tb_shop` SET
`owner_id` = 'owner_id', `area_id` = 'area_id', `shop_category_id` = 'shop_category_id', `shop_name` = 'shop_name', `shop_desc` = 'shop_desc', `shop_addr` = 'shop_addr', `phone` = 'phone', `shop_img` = 'shop_img', `priority` = 'priority', `create_time` = 'create_time', `last_edit_time` = 'last_edit_time', `enable_status` = 'enable_status', `advice` = 'advice' WHERE `shop_id` = #{id} ; </update>
|