MySQL数据库表结构设计
第 1-22 条, 共 22 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
order_no | char(60) | 否 | 订单号 | 无索引 | ||
order_detail_id | int(11) | 0 | 否 | 订单详情id | 无索引 | 0 |
order_id | int(11) | 0 | 否 | 订单id | 普通索引 | 0 |
goods_id | int(11) | 0 | 否 | 商品id | 普通索引 | 0 |
user_id | int(11) | 0 | 否 | 用户id | 普通索引 | 0 |
yesapi_shopxo_s_order_aftersale_status | tinyint(2) | 0 | 否 | 状态(0待确认, 1待退货, 2待审核, 3已完成, 4已拒绝, 5已取消) | 普通索引 | 0 |
yesapi_shopxo_s_order_aftersale_type | tinyint(1) | 0 | 否 | 业务类型(0仅退款, 1退货退款) | 无索引 | 0 |
refundment | tinyint(1) | 0 | 否 | 退款类型(0原路退回, 1退至钱包, 2手动处理) | 无索引 | 0 |
reason | char(180) | 否 | 申请原因 | 无索引 | ||
yesapi_shopxo_s_order_aftersale_number | int(11) | 0 | 否 | 退货数量 | 无索引 | 0 |
price | decimal(10,2) unsigned | 0.00 | 否 | 退款金额 | 无索引 | 0.00 |
msg | char(230) | 否 | 退款说明 | 无索引 | ||
images | text | 是 | 凭证图片(一维数组json存储) | 无索引 | ||
refuse_reason | char(230) | 否 | 拒绝原因 | 无索引 | ||
express_name | char(60) | 否 | 快递名称 | 无索引 | ||
express_number | char(60) | 否 | 快递单号 | 无索引 | ||
apply_time | int(11) | 0 | 否 | 申请时间 | 无索引 | 0 |
confirm_time | int(11) | 0 | 否 | 确认时间 | 无索引 | 0 |
delivery_time | int(11) | 0 | 否 | 退货时间 | 无索引 | 0 |
audit_time | int(11) | 0 | 否 | 审核时间 | 无索引 | 0 |
cancel_time | int(11) | 0 | 否 | 取消时间 | 无索引 | 0 |
upd_time | int(11) | 0 | 否 | 更新时间 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:ShopXO商城-订单售后:https://open.yesapi.cn/tablelist/yesapi_shopxo_s_order_aftersale.html
-- 数据库大全:ShopXO商城-订单售后
-- 来源:YesApi.cn
CREATE TABLE `yesapi_shopxo_s_order_aftersale` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_no` char(60) NOT NULL COMMENT '订单号',
`order_detail_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单详情id',
`order_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单id',
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品id',
`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户id',
`yesapi_shopxo_s_order_aftersale_status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '状态(0待确认, 1待退货, 2待审核, 3已完成, 4已拒绝, 5已取消)',
`yesapi_shopxo_s_order_aftersale_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '业务类型(0仅退款, 1退货退款)',
`refundment` tinyint(1) NOT NULL DEFAULT '0' COMMENT '退款类型(0原路退回, 1退至钱包, 2手动处理)',
`reason` char(180) NOT NULL COMMENT '申请原因',
`yesapi_shopxo_s_order_aftersale_number` int(11) NOT NULL DEFAULT '0' COMMENT '退货数量',
`price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额',
`msg` char(230) NOT NULL COMMENT '退款说明',
`images` text NOT NULL COMMENT '凭证图片(一维数组json存储)',
`refuse_reason` char(230) NOT NULL COMMENT '拒绝原因',
`express_name` char(60) NOT NULL COMMENT '快递名称',
`express_number` char(60) NOT NULL COMMENT '快递单号',
`apply_time` int(11) NOT NULL DEFAULT '0' COMMENT '申请时间',
`confirm_time` int(11) NOT NULL DEFAULT '0' COMMENT '确认时间',
`delivery_time` int(11) NOT NULL DEFAULT '0' COMMENT '退货时间',
`audit_time` int(11) NOT NULL DEFAULT '0' COMMENT '审核时间',
`cancel_time` int(11) NOT NULL DEFAULT '0' COMMENT '取消时间',
`upd_time` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
KEY `order_id` (`order_id`),
KEY `goods_id` (`goods_id`),
KEY `user_id` (`user_id`),
KEY `yesapi_shopxo_s_order_aftersale_status` (`yesapi_shopxo_s_order_aftersale_status`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'ShopXO商城-订单售后';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航