16 lines
217 B
PHP
16 lines
217 B
PHP
<?php
|
|
|
|
namespace App\Models\Welcome;
|
|
|
|
use App\Core\Model;
|
|
|
|
/**
|
|
* 测试
|
|
*/
|
|
class Test extends Model
|
|
{
|
|
protected $table = 'test';
|
|
protected $primaryKey = 'id';
|
|
protected $fillable = ['name', 'status'];
|
|
}
|