触客宝 内容管理提交

This commit is contained in:
wong
2025-09-25 17:52:56 +08:00
parent 31dad88078
commit 1e1b65684d
13 changed files with 772 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace app\chukebao\model;
use think\Model;
class SensitiveWord extends Model
{
protected $pk = 'id';
protected $name = 'kf_sensitive_word';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}