LiveProduct.php 430 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\common\model\plus\live;
  3. use app\common\model\BaseModel;
  4. /**
  5. * 房间商品模型
  6. */
  7. class LiveProduct extends BaseModel
  8. {
  9. protected $name = 'live_product';
  10. protected $pk = 'live_product_id';
  11. /**
  12. * 管理商品表
  13. */
  14. public function product()
  15. {
  16. return $this->belongsTo('app\\common\\model\\product\\Product', 'product_id', 'product_id')->hidden(['content']);
  17. }
  18. }