19 lines
360 B
PHP
19 lines
360 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class MembershipLevel extends Model
|
|
{
|
|
protected $name = 'membership_levels';
|
|
protected $autoWriteTimestamp = true;
|
|
protected $createTime = 'created_at';
|
|
protected $updateTime = 'updated_at';
|
|
|
|
protected $type = [
|
|
'permissions' => 'json',
|
|
'allowed_models' => 'json',
|
|
];
|
|
}
|