MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
flash_order_overtime | int(11) | 是 | 秒杀订单超时关闭时间(分) | 无索引 | ||
normal_order_overtime | int(11) | 是 | 正常订单超时时间(分) | 无索引 | ||
confirm_overtime | int(11) | 是 | 发货后自动确认收货时间(天) | 无索引 | ||
finish_overtime | int(11) | 是 | 自动完成交易时间,不能申请售后(天) | 无索引 | ||
comment_overtime | int(11) | 是 | 订单完成后自动好评时间(天) | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-订单设置表:https://open.yesapi.cn/tablelist/yesapi_mall_oms_order_setting.html
-- 数据库大全:电商-订单设置表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_oms_order_setting` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`flash_order_overtime` int(11) NULL COMMENT '秒杀订单超时关闭时间(分)',
`normal_order_overtime` int(11) NULL COMMENT '正常订单超时时间(分)',
`confirm_overtime` int(11) NULL COMMENT '发货后自动确认收货时间(天)',
`finish_overtime` int(11) NULL COMMENT '自动完成交易时间,不能申请售后(天)',
`comment_overtime` int(11) NULL COMMENT '订单完成后自动好评时间(天)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-订单设置表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航