1 Star 0 Fork 3

2450859989/知识付费

forked from 17634547884/知识付费 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.sql 2.87 KB
一键复制 编辑 原始数据 按行查看 历史
17634547884 提交于 2022-09-22 10:06 . 1
-- 用户课程表
CREATE TABLE `eb_lesson` (
`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`type` tinyint unsigned not null default 0 comment '课程类型:0=免费开通,1=条件开通',
`name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '课程名称' COLLATE 'utf8_general_ci',
`sales_price` DECIMAL(12,2) UNSIGNED NOT NULL DEFAULT '0.00' COMMENT '销售价',
`original_price` DECIMAL(12,2) UNSIGNED NOT NULL DEFAULT '0.00' COMMENT '原价',
`lesson_image` VARCHAR(255) NULL DEFAULT '' COMMENT '课程主图' COLLATE 'utf8_general_ci',
`lesson_images` TEXT NULL DEFAULT NULL COMMENT '轮播图' COLLATE 'utf8_general_ci',
`category_id` int unsigned NOT NULL DEFAULT 0 COMMENT '所属分类ID',
`content` TEXT NULL DEFAULT NULL COMMENT '课程描述' COLLATE 'utf8_general_ci',
`sales` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '销量',
`status` TINYINT(3) UNSIGNED NOT NULL DEFAULT '1' COMMENT '状态:1=正常,0=禁用',
`sort` INT(10) UNSIGNED NOT NULL DEFAULT '9999' COMMENT '排序',
`deletetime` BIGINT(20) UNSIGNED NULL DEFAULT NULL COMMENT '删除时间',
`create_time` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '创建时间',
`update_time` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '修改时间',
`is_on` TINYINT(4) NULL DEFAULT '0' COMMENT '首页显示:1=首页显示,0=不显示',
PRIMARY KEY (`id`) USING BTREE
)COMMENT='课程' COLLATE='utf8_general_ci' ENGINE=InnoDB;
--课程订单表
CREATE TABLE `eb_lesson_order` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`lesson_id` int(11) NOT NULL COMMENT '课程id',
`pay_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '支付价格',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0-未支付 1-支付成功 2-退款',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户id',
`type` tinyint unsigned not null default 1 comment '支付类型:1=微信,2=支付宝',
`sale_id` int(11) NOT NULL DEFAULT '0' COMMENT '销售id',
`is_replace` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0-无 1-更换',
`replace_order_id` int(11) NOT NULL DEFAULT '0' COMMENT '更换订单id',
`era_pay_status` tinyint unsigned not null default 0 comment '是否是代付',
`pay_uid` int unsigned not null default 0 comment '实际付款用户',
`pay_time` int(11) NOT NULL DEFAULT '0' COMMENT '支付时间',
`create_time` int(11) NOT NULL COMMENT '创建时间',
`update_time` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
`out_time` int(11) NOT NULL DEFAULT '0' COMMENT '退款时间',
`replace_time` int(11) NOT NULL DEFAULT '0' COMMENT '更换订单时间',
`out_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '退款金额',
`order_sn` varchar(100) NOT NULL COMMENT '订单编号',
`pay_sn` varchar(200) DEFAULT NULL COMMENT '支付提供商订单标号',
`out_sn` varchar(200) DEFAULT NULL COMMENT '退款服务商编号',
PRIMARY KEY (`id`),
KEY `index_status` (`uid`,`status`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='课程订单表';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/hx555xh/knowledge-payment.git
git@gitee.com:hx555xh/knowledge-payment.git
hx555xh
knowledge-payment
知识付费
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385