This commit is contained in:
aozhiwei 2022-01-24 19:59:22 +08:00
parent ed19d88d49
commit dc28d97566

View File

@ -59,6 +59,7 @@ CREATE TABLE `t_box_order` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`order_id` varchar(60) NOT NULL DEFAULT '' COMMENT '订单id',
`box_id` varchar(60) NOT NULL DEFAULT '' COMMENT '箱子唯一id',
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
`state` int(11) NOT NULL DEFAULT '0' COMMENT 'state 0:待支付 1支付成功',
`bc_synced` int(11) NOT NULL DEFAULT '0' COMMENT '0:未上链 1:已上链',
`bc_sync_count` int(11) NOT NULL DEFAULT '0' COMMENT '本节点同步次数',