1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| DROP TABLE IF EXISTS `ixt_customer_note_comment`; CREATE TABLE `ixt_customer_note_comment` ( `id` varchar(50) NOT NULL COMMENT '主键UUID', `customerId` varchar(50) NOT NULL COMMENT '评论用户ID', `dataId` varchar(50) NOT NULL COMMENT '被评论的说说ID', `content` varchar(1000) NOT NULL COMMENT '评论内容', `createUser` varchar(50) DEFAULT NULL COMMENT '创建人ID', `createDate` datetime DEFAULT NULL COMMENT '更新人ID', `updateUser` varchar(50) DEFAULT NULL COMMENT '更新时间', `updateDate` datetime DEFAULT NULL COMMENT '更新时间', `deleteFlag` bit(1) NOT NULL DEFAULT b'0' COMMENT '删除标识:0未删除,1删除', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
INSERT INTO `ixt_customer_note_comment` VALUES ('1111', 'a1', '1001', 'comment1001_1', null, '2015-10-12 21:21:22', null, null, ''); INSERT INTO `ixt_customer_note_comment` VALUES ('1212', 'a2', '1001', 'comment1001_2', null, '2015-10-12 22:21:11', null, null, ''); INSERT INTO `ixt_customer_note_comment` VALUES ('2121', 'b3', '1002', 'comment1002_3', null, '2015-10-15 21:22:48', null, null, ''); INSERT INTO `ixt_customer_note_comment` VALUES ('321', 'b1', '1002', 'comment1002_1', null, '2015-10-14 21:21:59', null, null, ''); INSERT INTO `ixt_customer_note_comment` VALUES ('3221', 'c1', '1000', 'comment1000_1', null, '2015-10-02 21:23:19', null, null, ''); INSERT INTO `ixt_customer_note_comment` VALUES ('421', 'b2', '1002', 'comment1002_2', null, '2015-10-15 21:22:25', null, null, '');
|