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.
29 lines
467 B
29 lines
467 B
3 years ago
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* AdministratorsRole.php
|
||
|
* User: ChenLong
|
||
|
* DateTime: 2020-11-24 14:05:54
|
||
|
*/
|
||
|
|
||
|
namespace app\admin\model\system;
|
||
|
|
||
|
use app\common\BaseModel;
|
||
|
use think\Model;
|
||
|
|
||
|
class AdministratorsRole extends Model
|
||
|
{
|
||
|
use BaseModel;
|
||
|
|
||
|
protected $schema = [
|
||
|
'id' => 'int',
|
||
|
'administrators_id' => 'int',
|
||
|
'role_id' => 'int',
|
||
|
'create_time' => 'datetime',
|
||
|
'update_time' => 'datetime',
|
||
|
'delete_time' => 'int',
|
||
|
|
||
|
];
|
||
|
|
||
|
}
|