12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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\ais\model;
- use think\Model;
- class AisCardUser extends Model{
- protected $pk = 'id';
-
- /**
- * 好店
- * @return void
- */
- public function store(){
- return $this->hasOne('AisStore','id','store_id');
- }
-
- /**
- * 储值卡
- * @return void
- */
- public function card(){
- return $this->hasOne('AisCard','id','card_id');
- }
-
- /**
- * 优惠券
- * @return void
- */
- public function couponUser(){
- return $this->hasOne('AisCouponUser','id','user_coupon_id');
- }
- //用户
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
- }
|