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.
38 lines
631 B
38 lines
631 B
<?php |
|
/** |
|
* |
|
* ApiModule.php |
|
* User: ChenLong |
|
* DateTime: 2020-12-11 11:08:36 |
|
*/ |
|
|
|
namespace app\admin\model\system; |
|
|
|
use app\common\BaseModel; |
|
use think\Model; |
|
|
|
|
|
/** |
|
* Class ApiModule |
|
* @package app\admin\controller\ApiModule |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class ApiModule extends Model |
|
{ |
|
|
|
use BaseModel; |
|
|
|
protected $schema = [ |
|
'id' => 'int', |
|
'item_name' => 'varchar', |
|
'url_prefix' => 'varchar', |
|
'token' => 'varchar', |
|
'describe' => 'varchar', |
|
'create_time' => 'datetime', |
|
'update_time' => 'datetime', |
|
'delete_time' => 'int', |
|
|
|
]; |
|
|
|
|
|
}
|
|
|