1234567891011121314151617181920 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Favourite extends Model
- {
- protected $type=[
- 'tax'=>'json',
- ];
- protected $autoWriteTimestamp=true;
- protected $updateTime=null;
- protected $createTime='created_at';
- public function goods(){
- return $this->belongsTo(Goods::class,'fav_id');
- }
- }
|