Files
cunkebao_v3/Server/application/cunkebao/model/ContentItem.php

20 lines
316 B
PHP
Raw Normal View History

2025-04-11 16:15:48 +08:00
<?php
namespace app\cunkebao\model;
use think\Model;
class ContentItem extends Model
{
protected $pk = 'id';
2025-04-28 17:58:13 +08:00
protected $name = 'content_item';
2025-04-11 16:15:48 +08:00
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
2025-04-28 17:58:13 +08:00
2025-04-11 16:15:48 +08:00
}