外团推广功能提交

master
zhengyongxing 4 years ago
parent 5c57abc794
commit e30cd2fea7

@ -32,8 +32,8 @@
</style>
<div class="cf main-place top_nav_list navtab_list">
<h3 class="page_title">市场毛利统计(不结算)</h3>
<p class="description_text">说明:不结算的市场毛利统计</p>
<h3 class="page_title">非外团游戏结算数据统计</h3>
<p class="description_text">说明:不开放给外团游戏流水数据统计</p>
</div>

@ -2675,5 +2675,15 @@ ADD COLUMN `turnover_type` tinyint(2) NULL DEFAULT 0 COMMENT '结算流水类型
ALTER TABLE `tab_company_game_ratio_log`
ADD COLUMN `turnover_type` tinyint(2) NULL DEFAULT 0 COMMENT '结算流水类型 1 月流水 2 历史流水' AFTER `end_time`;
ALTER TABLE `tab_company_game_ratio`
ADD COLUMN `turnover_type` tinyint(2) NULL DEFAULT 0 COMMENT '结算流水类型 1 月流水 2 历史流水' AFTER `end_time`;
ALTER TABLE `tab_settleup_marketorder`
ADD COLUMN `is_settlement` tinyint(2) NULL DEFAULT 0 COMMENT '是否结算' AFTER `company_profit`;
ADD COLUMN `is_settlement` tinyint(2) NULL DEFAULT 0 COMMENT '是否结算' AFTER `company_profit`;
CREATE TABLE `tab_company_belong_game` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`game_ids` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '外团推广关联游戏的数据',
`time` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '选择时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
Loading…
Cancel
Save