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

17 lines
320 B
PHP
Raw Normal View History

2025-09-17 16:51:11 +08:00
<?php
namespace app\chukebao\model;
use think\Model;
2025-09-26 15:37:15 +08:00
class AutoGreetings extends Model
2025-09-17 16:51:11 +08:00
{
protected $pk = 'id';
2025-09-26 15:37:15 +08:00
protected $name = 'kf_auto_greetings';
2025-09-17 16:51:11 +08:00
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}