-- ----------------------------
-- Table structure for eb_store_product_reply
-- ----------------------------
CREATE TABLE `eb_store_product_reply` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '评论ID',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`oid` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID',
`unique` char(32) NOT NULL DEFAULT '' COMMENT '唯一id',
`product_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品id',
`reply_type` varchar(32) NOT NULL DEFAULT 'product' COMMENT '某种商品类型(普通商品、秒杀商品)',
`product_score` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品分数',
`service_score` tinyint(1) NOT NULL DEFAULT '0' COMMENT '服务分数',
`comment` varchar(512) NOT NULL DEFAULT '' COMMENT '评论内容',
`pics` text COMMENT '评论图片',
`add_time` int(11) NOT NULL DEFAULT '0' COMMENT '评论时间',
`merchant_reply_content` varchar(300) NOT NULL DEFAULT '' COMMENT '管理员回复内容',
`merchant_reply_time` int(11) NOT NULL DEFAULT '0' COMMENT '管理员回复时间',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未删除1已删除',
`is_reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未回复1已回复',
`nickname` varchar(64) NOT NULL DEFAULT '' COMMENT '用户名称',
`avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '用户头像',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `order_id_2` (`oid`,`unique`) USING BTREE,
KEY `add_time` (`add_time`) USING BTREE,
KEY `parent_id` (`reply_type`) USING BTREE,
KEY `is_del` (`is_del`) USING BTREE,
KEY `product_score` (`product_score`) USING BTREE,
KEY `service_score` (`service_score`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='评论表';
1263
{{like_count}}
{{collect_count}}
{{item.user_info.nickname ? item.user_info.nickname : item.user_name}}
作者 管理员 企业
{{itemf.name}}
{{itemc.user_info.nickname}}
{{itemc.user_name}}
回复 {{itemc.comment_user_info.nickname}}
{{itemf.name}}