Files
cunkebao_v3/Server/application/chukebao/model/NoticeModel.php

16 lines
309 B
PHP
Raw Normal View History

2025-09-29 09:44:43 +08:00
<?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';
}