base.sql
1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**yhm_orders**/
CREATE TABLE yhm_orders.`orders_logistics` (
`order_code` bigint(20) DEFAULT NULL,
`detail_list` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/**yhm_passport**/
CREATE TABLE yhm_passport.`bail_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) unsigned DEFAULT NULL,
`type` int(11) DEFAULT NULL COMMENT '类型(如:缴纳,扣款,审核)',
`amount` decimal(10,2) DEFAULT NULL COMMENT '金额',
`personnel` int(11) DEFAULT NULL COMMENT '操作人',
`status` tinyint(1) unsigned DEFAULT '0',
`desc` varchar(255) DEFAULT NULL COMMENT '描述',
`create_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='保证金日志';
CREATE TABLE yhm_passport.`real_name` (
`uid` int(11) NOT NULL,
`name` varchar(255) DEFAULT NULL COMMENT '证实姓名',
`cred_img` varchar(255) DEFAULT NULL COMMENT '上传证件',
`photo` varchar(255) DEFAULT NULL COMMENT '照片',
`credential_no` varchar(30) DEFAULT NULL COMMENT '证件号',
`cred_type` tinyint(1) DEFAULT NULL COMMENT '证件类型',
`status` tinyint(1) DEFAULT '0' COMMENT '是否有效',
`auditor` int(11) DEFAULT NULL COMMENT '审核人',
`auditor_time` datetime DEFAULT NULL COMMENT '审核时间',
`describe` varchar(255) DEFAULT NULL COMMENT '描述',
`create_time` datetime DEFAULT NULL COMMENT '上传时间',
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='实名制';