123456789101112131415161718192021222324 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 支付有礼
- */
- 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');
- }
- }
|