123456789101112 |
- <?php
- namespace app\common\model;
- use think\Model;
- // 心选礼物
- class GiftGoods extends Model
- {
- public function itemList()
- {
- return $this->hasMany('StoreGoodsItem','goods_id','goods_id')->field('id,goods_id,goods_spec,stock,stock,weight');
- }
- }
|