12 lines
151 B
PHP
12 lines
151 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
use think\model;
|
||
|
use think\model\relation\BelongsToMany;
|
||
|
use think\model\relation\HasOne;
|
||
|
|
||
|
class Account extends Base
|
||
|
{
|
||
|
}
|