init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
19
application/admin/model/shopro/data/Area.php
Normal file
19
application/admin/model/shopro/data/Area.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\model\shopro\data;
|
||||
|
||||
use app\admin\model\shopro\Common;
|
||||
|
||||
class Area extends Common
|
||||
{
|
||||
protected $autoWriteTimestamp = false;
|
||||
|
||||
// 表名
|
||||
protected $name = 'shopro_data_area';
|
||||
|
||||
|
||||
public function children()
|
||||
{
|
||||
return $this->hasMany(self::class, 'pid', 'id');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user