insert into mall_comment_picture
(
`comment_id`,
`pic_url`,
`sort_order`
)
values
(
#{comment_id},
#{pic_url},
#{sort_order}
)
update mall_comment_picture
`comment_id` = #{comment_id},`pic_url` = #{pic_url},`sort_order` = #{sort_order}
where id = #{id}
delete from mall_comment_picture where id = #{value}
delete from mall_comment_picture where id in
#{id}