insert into mall_comment(
`type_id`,
`value_id`,
`user_id`,
`order_id`,
`product_id`,
`goods_specification_name_value`,
`status`,
`content`,
`add_time`,
`eval_level`,
`delivery_level`,
`goods_level`)
values(
#{typeId},
#{valueId},
#{userId},
#{orderId},
#{productId},
#{goodsSpecificationNameValue},
#{status},
#{content},
#{addTime},
#{evalLevel},
#{deliveryLevel},
#{goodsLevel})
update mall_comment
`type_id` = #{typeId},
`value_id` = #{valueId},
`user_id` = #{userId},
`order_id` = #{orderId},
`product_id` = #{productId},
`goods_specification_name_value` = #{goodsSpecificationNameValue},
`status` = #{status},
`content` = #{content},
`add_time` = #{addTime},
`eval_level` = #{evalLevel},
`delivery_level` = #{deliveryLevel},
`goods_level` = #{goodsLevel}
where id = #{id}
delete from mall_comment where id = #{value}
delete from mall_comment where id in
#{id}