This commit is contained in:
aozhiwei 2022-04-03 14:11:21 +08:00
parent 12dc9253a1
commit 33924e9454
2 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@ DROP TABLE IF EXISTS `t_box_order`;
CREATE TABLE `t_box_order` ( CREATE TABLE `t_box_order` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id', `idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`game_id` int(11) NOT NULL DEFAULT '0' COMMENT 'game id', `game_id` int(11) NOT NULL DEFAULT '0' COMMENT 'game id',
`func_id` int(11) NOT NULL DEFAULT '0' COMMENT 'func_id 1:预售 2:商店',
`batch_idx` int(11) NOT NULL DEFAULT '0' COMMENT '批次号idx', `batch_idx` int(11) NOT NULL DEFAULT '0' COMMENT '批次号idx',
`order_id` varchar(60) NOT NULL DEFAULT '' COMMENT '订单id', `order_id` varchar(60) NOT NULL DEFAULT '' COMMENT '订单id',
`type` varchar(60) NOT NULL DEFAULT '' COMMENT 'type', `type` varchar(60) NOT NULL DEFAULT '' COMMENT 'type',

View File

@ -193,6 +193,7 @@ class MarketController extends BaseController {
$tokenType = 0; $tokenType = 0;
$fieldsKv = array( $fieldsKv = array(
'game_id' => 2006, 'game_id' => 2006,
'func_id' => funcId,
'batch_idx' => $currBatchMeta['id'], 'batch_idx' => $currBatchMeta['id'],
'order_id' => $orderId, 'order_id' => $orderId,
'type' => $type, 'type' => $type,