TaoLer/app/common/model/Collection.php

25 lines
482 B
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
class Collection extends Model
{
//protected $pk = 'id'; //主键
protected $autoWriteTimestamp = true; //开启自动时间戳
protected $createTime = 'create_time';
//软删除
use SoftDelete;
protected $deleteTime = 'delete_time';
protected $defaultSoftDelete = 0;
//收藏关联文章
public function article()
{
2021-05-24 15:05:30 +08:00
return $this->belongsTo(Article::class);
2020-01-01 13:17:19 +08:00
}
}