Files
cunkebao_v3/Server/application/chukebao/model/FollowUp.php
2025-09-19 16:50:32 +08:00

17 lines
307 B
PHP

<?php
namespace app\chukebao\model;
use think\Model;
class FollowUp extends Model
{
protected $pk = 'id';
protected $name = 'follow_up';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}