Files
fast_response/superadmin/application/admin/model/Firmfollowuptemplate.php
2025-03-27 14:45:54 +08:00

45 lines
627 B
PHP

<?php
namespace app\admin\model;
use think\Model;
class Firmfollowuptemplate extends Model
{
// 表名
protected $name = 'firmfollowuptemplate';
// 自动写入时间戳字段
protected $autoWriteTimestamp = false;
// 定义时间戳字段名
protected $createTime = false;
protected $updateTime = false;
protected $deleteTime = false;
// 追加属性
protected $append = [
];
public function firmbigcategory()
{
return $this->belongsTo('Firmbigcategory', 'firmbigcategory_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
}