Favourite.php 345 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Favourite extends Model
  5. {
  6. protected $type=[
  7. 'tax'=>'json',
  8. ];
  9. protected $autoWriteTimestamp=true;
  10. protected $updateTime=null;
  11. protected $createTime='created_at';
  12. public function goods(){
  13. return $this->belongsTo(Goods::class,'fav_id');
  14. }
  15. }