消息提醒提交

This commit is contained in:
wong
2025-09-29 09:44:43 +08:00
parent a923615190
commit 5102f02083
4 changed files with 141 additions and 0 deletions

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