StatisticsSearchGoods.php 784 B

12345678910111213141516171819202122
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace app\admin\model;
  10. use app\common\models\goods\Goods;
  11. use app\common\models\StatisticsSearchGoods as StatisticsSearchGoodsModel;
  12. class StatisticsSearchGoods extends StatisticsSearchGoodsModel {
  13. public function goods(){
  14. return $this->hasOne(Goods::class,'id','goods_id')->joinType("LEFT")->bind([
  15. "title"
  16. ]);
  17. }
  18. }