123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace app\controller\admin\user;
- use app\Request;
- use think\exception\ValidateException;
- use app\common\AdminBaseController;
- use app\services\user\UserExtractServices;
- use app\validate\admin\user\UserExtractValidate;
- class UserExtract extends AdminBaseController
- {
-
- public function __construct(Request $request, UserExtractServices $services, UserExtractValidate $validate)
- {
- parent::__construct($request);
- $this->service = $services;
- $this->validate = $validate;
- $this->searchable = [
- ['uid', ''],
- ['real_name', ''],
- ['extract_type', ''],
- ['fail_time', ''],
- ['time', ''],
- ['status', '']
- ];
- $this->searchDeal = function (&$data){
- };
- $this->createParams = [
- ['uid', 0],
- ['real_name', ''],
- ['extract_type', '0'],
- ['bank_code', '0'],
- ['bank_address', ''],
- ['alipay_code', ''],
- ['extract_price', 0.00],
- ['extract_fee', 0.00],
- ['balance', 0.00],
- ['mark', ''],
- ['fail_msg', ''],
- ['fail_time', '0'],
- ['status', '0'],
- ['wechat', ''],
- ['qrcode_url', '']
- ];
- $this->saveDeal = $this->updateDeal = function (&$data, $id){
- };
- }
-
- }
|