123456789101112131415161718192021222324 |
- <?php
- namespace app\allwin\model;
- use think\Model;
- class AllwinGiftStore extends Model{
- protected $pk = 'id';
-
-
- public function store(){
- return $this->hasOne('AllwinStore','id','store_id');
- }
-
- public function gift(){
- return $this->hasOne('AllwinGift','id','gift_id');
- }
- }
|