消息提醒提交
This commit is contained in:
16
Server/application/chukebao/model/NoticeModel.php
Normal file
16
Server/application/chukebao/model/NoticeModel.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace app\chukebao\model;
|
||||
|
||||
use think\Model;
|
||||
class NoticeModel extends Model
|
||||
{
|
||||
protected $pk = 'id';
|
||||
protected $name = 'kf_notice';
|
||||
|
||||
// 自动写入时间戳
|
||||
protected $autoWriteTimestamp = true;
|
||||
protected $createTime = 'createTime';
|
||||
protected $updateTime = 'updateTime';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user