Files
cunkebao_v3/Server/application/chukebao/model/SensitiveWord.php
2025-09-25 17:52:56 +08:00

17 lines
320 B
PHP

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