You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
634 B
31 lines
634 B
/** |
|
* //=={Table}==//.php |
|
* User: ChenLong |
|
* DateTime: //=={date}==// |
|
*/ |
|
|
|
namespace app\admin\controller; |
|
|
|
use \app\common\controller\Admin; |
|
//=={use}==// |
|
|
|
/** |
|
* Class //=={Table}==// |
|
* @package app\admin\controller\//=={Table}==// |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class //=={Table}==// extends Admin |
|
{ |
|
/** |
|
* 列表数据接口 |
|
* @return mixed|string|\think\Collection|\think\response\Json |
|
* @throws \app\common\SdException |
|
*/ |
|
public function listData() |
|
{ |
|
return $this//=={list_join}==// |
|
->setField('//=={list_field}==//') |
|
->listsRequest(); |
|
} |
|
|
|
}
|
|
|