GiftGoods.php 267 B

123456789101112
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 心选礼物
  5. class GiftGoods extends Model
  6. {
  7. public function itemList()
  8. {
  9. return $this->hasMany('StoreGoodsItem','goods_id','goods_id')->field('id,goods_id,goods_spec,stock,stock,weight');
  10. }
  11. }