TaoLer/app/common/model/System.php

21 lines
159 B
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
namespace app\common\model;
use think\Model;
class System extends Model
{
public function add()
{
$system = System::all();
}
}