car/application/admin/model/Series.php
2025-06-23 20:19:33 +08:00

45 lines
557 B
PHP

<?php
namespace app\admin\model;
use think\Model;
class Series extends Model
{
// 表名
protected $table = 'series';
// 自动写入时间戳字段
protected $autoWriteTimestamp = false;
// 定义时间戳字段名
protected $createTime = false;
protected $updateTime = false;
protected $deleteTime = false;
// 追加属性
protected $append = [
];
public function brand()
{
return $this->belongsTo(Brands::class,'brand_id')->setEagerlyType(0);
}
}