21 lines
159 B
PHP
21 lines
159 B
PHP
<?php
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
|
|
|
|
class System extends Model
|
|
{
|
|
|
|
|
|
public function add()
|
|
{
|
|
|
|
$system = System::all();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} |