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