| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-05-14
- *
- *
- */
- namespace app\common\model\store\coupon;
- use app\common\model\BaseModel;
- use app\common\model\user\User;
- /**
- * Class StoreCouponUser
- * @package app\common\model\store\coupon
- * @author xaboy
- * @day 2020-05-14
- */
- class StoreCouponUser extends BaseModel
- {
- /**
- * @return string
- * @author xaboy
- * @day 2020-03-30
- */
- public static function tablePk(): string
- {
- return 'coupon_user_id';
- }
- /**
- * @return string
- * @author xaboy
- * @day 2020-03-30
- */
- public static function tableName(): string
- {
- return 'store_coupon_user';
- }
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid');
- }
- public function coupon()
- {
- return $this->hasOne(StoreCoupon::class, 'coupon_id', 'coupon_id');
- }
- public function product()
- {
- return $this->hasMany(StoreCouponProduct::class, 'coupon_id', 'coupon_id');
- }
- }
|