delete:冗余模块

This commit is contained in:
JaguarJack
2020-09-28 11:14:02 +08:00
parent 4b8d5aa507
commit bece4dac86
4 changed files with 0 additions and 72 deletions

View File

@@ -1,30 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
namespace catchAdmin\cms\model;
use catcher\base\CatchModel as Model;
class Hello extends Model
{
protected $name = 'hello';
protected $field = [
'id', //
'good', //
'creator_id', // 创建人ID
'created_at', // 创建时间
'updated_at', // 更新时间
'deleted_at', // 软删除
];
}