12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace app\smartbc\model;
- use think\Model;
- class SmartbcCouponUser extends Model{
-
- public function store(){
- return $this->hasOne('SmartbcStore','id','store_id');
- }
-
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
-
-
- public function coupon(){
- return $this->hasOne('SmartbcCoupon','id','coupon_id');
- }
- }
|