公会分成管理

master
chenxiaojun 5 years ago
parent 9c4f1e5c4e
commit 61bfbd00cc

@ -0,0 +1,16 @@
<?php
namespace Admin\Controller;
use Think\Controller;
class PromoteGameRatioController extends ThinkController
{
public function lists()
{
$params = I('get.');
$promoteAccount = $params['promote_account'] ?? '';
$gameId = $params['game_id'] ?? 0;
$status = $params['status'] ?? '';
}
}

@ -0,0 +1,8 @@
<?php
namespace Admin\Model;
class PromoteGameRatioModel
{
}

@ -725,3 +725,22 @@ INSERT INTO `sys_menu`(`title`, `pid`, `sort`, `url`, `hide`, `tip`, `group`, `i
--
ALTER TABLE `tab_game`
ADD COLUMN `flooring_page_video_cover` int(11) NOT NULL DEFAULT 0 COMMENT '落地页视频封面';
--2019-12-16
--
CREATE TABLE `tab_promote_game_ratio` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`promote_id` int(11) NOT NULL DEFAULT 0 COMMENT '推广员id',
`game_id` int(11) NOT NULL DEFAULT 0 COMMENT '游戏id',
`ratio` decimal(5, 2) NOT NULL DEFAULT 0 COMMENT '分成比例',
`begin_time` int(10) NOT NULL DEFAULT 0 COMMENT '开始时间',
`end_time` int(10) NOT NULL DEFAULT 0 COMMENT '过期时间',
`remark` varchar(255) NOT NULL COMMENT '备注',
`status` tinyint(3) NOT NULL DEFAULT 0 COMMENT '审核状态:-1-未通过 0-待审核 1-通过',
`applicant_id` int(11) NOT NULL DEFAULT 0 COMMENT '申请人',
`reviewer_id` int(11) NOT NULL DEFAULT 0 COMMENT '审核人',
`create_time` int(10) NOT NULL DEFAULT 0 COMMENT '创建时间',
`update_time` int(10) NOT NULL DEFAULT 0 COMMENT '更新时间',
PRIMARY KEY (`id`),
INDEX `promote_id`(`promote_id`, `game_id`, `status`) USING BTREE
);
Loading…
Cancel
Save