Files

17 lines
310 B
PHP
Raw Permalink Normal View History

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