vd/app/Models/Welcome/Test.php
2018-11-05 09:26:30 +08:00

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'];
}