新增后台管理
This commit is contained in:
@@ -1,25 +1,41 @@
|
||||
CREATE TABLE `order` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键ID',
|
||||
`order_no` varchar(32) NOT NULL COMMENT '自生成的订单号',
|
||||
`user_id` bigint NOT NULL COMMENT '用户ID',
|
||||
`product_id` bigint NOT NULL COMMENT '产品ID(软关联到产品表)',
|
||||
`payment_platform` enum('alipay', 'wechat', 'appleiap','other') NOT NULL COMMENT '支付平台(支付宝、微信、苹果内购、其他)',
|
||||
`payment_scene` enum('app', 'h5', 'mini_program', 'public_account') NOT NULL COMMENT '支付场景(App、H5、微信小程序、公众号)',
|
||||
`platform_order_id` varchar(64) DEFAULT NULL COMMENT '支付平台订单号',
|
||||
`amount` decimal(10, 2) NOT NULL COMMENT '支付金额',
|
||||
`status` enum('pending', 'paid', 'failed', 'refunded', 'closed') NOT NULL DEFAULT 'pending' COMMENT '支付状态',
|
||||
`del_state` tinyint NOT NULL DEFAULT '0' COMMENT '删除状态',
|
||||
`version` bigint NOT NULL DEFAULT '0' COMMENT '版本号',
|
||||
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
|
||||
`pay_time` datetime DEFAULT NULL COMMENT '支付时间',
|
||||
`refund_time` datetime DEFAULT NULL COMMENT '退款时间',
|
||||
`close_time` datetime DEFAULT NULL COMMENT '订单关闭时间',
|
||||
`delete_time` datetime DEFAULT NULL COMMENT '删除时间',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `unique_order_no` (`order_no`),
|
||||
KEY `idx_user_id` (`user_id`),
|
||||
KEY `idx_product_id` (`product_id`),
|
||||
KEY `idx_payment_platform` (`payment_platform`),
|
||||
KEY `idx_payment_scene` (`payment_scene`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='订单表';
|
||||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键ID',
|
||||
`order_no` varchar(32) NOT NULL COMMENT '自生成的订单号',
|
||||
`user_id` bigint NOT NULL COMMENT '用户ID',
|
||||
`product_id` bigint NOT NULL COMMENT '产品ID(软关联到产品表)',
|
||||
`payment_platform` enum(
|
||||
'alipay',
|
||||
'wechat',
|
||||
'appleiap',
|
||||
'other'
|
||||
) NOT NULL COMMENT '支付平台(支付宝、微信、苹果内购、其他)',
|
||||
`payment_scene` enum(
|
||||
'app',
|
||||
'h5',
|
||||
'mini_program',
|
||||
'public_account'
|
||||
) NOT NULL COMMENT '支付场景(App、H5、微信小程序、公众号)',
|
||||
`platform_order_id` varchar(64) DEFAULT NULL COMMENT '支付平台订单号',
|
||||
`amount` decimal(10, 2) NOT NULL COMMENT '支付金额',
|
||||
`status` enum(
|
||||
'pending',
|
||||
'paid',
|
||||
'failed',
|
||||
'refunded',
|
||||
'closed'
|
||||
) NOT NULL DEFAULT 'pending' COMMENT '支付状态',
|
||||
`del_state` tinyint NOT NULL DEFAULT '0' COMMENT '删除状态',
|
||||
`version` bigint NOT NULL DEFAULT '0' COMMENT '版本号',
|
||||
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
|
||||
`pay_time` datetime DEFAULT NULL COMMENT '支付时间',
|
||||
`refund_time` datetime DEFAULT NULL COMMENT '退款时间',
|
||||
`close_time` datetime DEFAULT NULL COMMENT '订单关闭时间',
|
||||
`delete_time` datetime DEFAULT NULL COMMENT '删除时间',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `unique_order_no` (`order_no`),
|
||||
KEY `idx_user_id` (`user_id`),
|
||||
KEY `idx_product_id` (`product_id`),
|
||||
KEY `idx_payment_platform` (`payment_platform`),
|
||||
KEY `idx_payment_scene` (`payment_scene`)
|
||||
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '订单表';
|
||||
20
deploy/sql/template.sql
Normal file
20
deploy/sql/template.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
CREATE TABLE `表名` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT,
|
||||
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`delete_time` datetime DEFAULT NULL COMMENT '删除时间',
|
||||
`del_state` tinyint NOT NULL DEFAULT '0',
|
||||
`version` bigint NOT NULL DEFAULT '0' COMMENT '版本号',
|
||||
|
||||
/* 业务字段开始 */
|
||||
`字段1` 数据类型 [约束条件] [DEFAULT 默认值] [COMMENT '字段说明'],
|
||||
`字段2` 数据类型 [约束条件] [DEFAULT 默认值] [COMMENT '字段说明'],
|
||||
/* 关联字段 - 软关联 */
|
||||
`关联表id` bigint [NOT NULL] [DEFAULT '0'] COMMENT '关联到XX表的id',
|
||||
/* 业务字段结束 */
|
||||
|
||||
PRIMARY KEY (`id`),
|
||||
/* 索引定义 */
|
||||
UNIQUE KEY `索引名称` (`字段名`),
|
||||
KEY `idx_关联字段` (`关联表id`) COMMENT '优化关联查询'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='表说明';
|
||||
@@ -2,7 +2,7 @@ SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for user
|
||||
-- Table structure for main
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `user`;
|
||||
CREATE TABLE `user` (
|
||||
|
||||
Reference in New Issue
Block a user