2019-09-06 23:53:10 +08:00

22 lines
471 B
PHP
Executable File

<?php
namespace wstmart\admin\controller;
use wstmart\admin\model\EctDeal as M;
/**
* ============================================================================
* 提现控制器
*/
class Ectdeal extends Base{
public function index(){
return $this->fetch("list");
}
/**
* 获取分页
*/
public function pageQuery(){
$m = new M();
$result=$m->pageQuery();
return WSTGrid($result);
}
}