pay_delivery.sql
2.61 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
39
40
41
42
43
44
45
46
47
48
-- 1.数据库(yh_shops)
--1.1 品牌(yh_shops.brand)
ALTER TABLE `brand`
ADD COLUMN `is_pay_delivery` tinyint(4) NULL DEFAULT 1 COMMENT '0、不支持货到付款 1、支持货到付款';
--1.2 产品(yh_shops.product)
ALTER TABLE `product`
ADD COLUMN `is_pay_delivery` tinyint(4) NULL DEFAULT 2 COMMENT '0、不支持货到付款 1、支持货到付款 2、默认状态随品牌状态';
-- 2.数据库(erp_product)
--2.1 品牌记录表(erp_product.brand_pay_delivery_check)
CREATE TABLE `brand_pay_delivery_check` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`brand_name` varchar(100) NOT NULL COMMENT '品牌名称',
`brand_id` smallint(5) unsigned NOT NULL COMMENT '品牌ID',
`applicant` varchar(50) NOT NULL COMMENT '申请人',
`applicant_pid` smallint(5) unsigned NOT NULL COMMENT '申请人ID',
`reject_reason` varchar(2048) DEFAULT NULL COMMENT '驳回原因',
`is_pay_delivery` tinyint(4) DEFAULT '1' COMMENT '0、不支持货到付款 1、支持货到付款',
`check_status` smallint(6) DEFAULT NULL COMMENT '100 待审核 200 审核通过 300 驳回',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '申请时间',
`auditor` varchar(50) DEFAULT NULL COMMENT '审核人',
`auditor_pid` smallint(5) DEFAULT NULL COMMENT '审核人ID',
`update_time` int(10) DEFAULT NULL COMMENT '审核时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--2.2 商品记录表(erp_product.product_pay_delivery_check)
CREATE TABLE `product_pay_delivery_check` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`product_skn` int(11) unsigned DEFAULT '0' COMMENT '产品ID(备用)',
`product_id` int(11) DEFAULT NULL COMMENT '产品ID(备用)',
`brand_name` varchar(100) DEFAULT NULL COMMENT '品牌名称',
`brand_id` smallint(5) unsigned DEFAULT NULL COMMENT '品牌ID',
`is_pay_delivery` tinyint(4) DEFAULT '1' COMMENT '0、不支持货到付款 1、支持货到付款',
`check_status` smallint(6) DEFAULT NULL COMMENT '100 待审核 200 审核通过 300 驳回',
`applicant` varchar(50) DEFAULT NULL COMMENT '申请人',
`applicant_pid` smallint(5) unsigned DEFAULT NULL COMMENT '申请人ID',
`auditor` varchar(50) DEFAULT NULL COMMENT '审核人',
`auditor_pid` smallint(5) DEFAULT NULL COMMENT '审核人ID',
`reject_reason` varchar(2048) DEFAULT NULL COMMENT '驳回原因',
`create_time` int(10) unsigned DEFAULT '0' COMMENT '申请时间',
`update_time` int(10) unsigned DEFAULT '0' COMMENT '审核时间',
PRIMARY KEY (`id`),
KEY `product_skn` (`product_skn`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;