13 lines
161 B
PHP
Executable File
13 lines
161 B
PHP
Executable File
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
use think\Request;
|
|
use think\Config;
|
|
|
|
class Report extends Model {
|
|
use \app\common\traits\AdminModel;
|
|
|
|
}
|