| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- // 财务对帐
- namespace app\v1\controller\customer;
- use plugin\saiadmin\basic\BaseController;
- use app\v1\logic\customer\ReconciliationLogic;
- use support\Request;
- use support\Response;
- class ReconciliationController extends BaseController
- {
- public function __construct()
- {
- $this->logic = new ReconciliationLogic();
- parent::__construct();
- }
- // 充值渠道收入;
- public function getChannelIncome(Request $request)
- {
- $where = $request->more([
- ['pay_date', ''],
- ['game_id', ''],
- ['pay_channel_id', ''],
- ]);
- $result = $this->logic->getChannelIncome($where);
- return $this->success($result);
- }
- // 充值渠道支出
- }
|