11 lines
173 B
PHP
11 lines
173 B
PHP
<?php
|
|
namespace app\model;
|
|
use think\Model;
|
|
class Role extends Model{
|
|
//用户角色
|
|
protected $type = [
|
|
'root' => 'json',
|
|
'auth' => 'json'
|
|
];
|
|
}
|