67 lines
1.2 KiB
PHP
67 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\store\coupon;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
use app\common\model\system\merchant\Merchant;
|
|
use app\common\model\user\User;
|
|
|
|
/**
|
|
* Class StoreCouponUser
|
|
* @package app\common\model\store\coupon
|
|
* @author xaboy
|
|
* @day 2020-05-14
|
|
*/
|
|
class StoreCouponOff extends BaseModel
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tablePk(): string
|
|
{
|
|
return 'id';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'store_coupon_off';
|
|
}
|
|
|
|
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');
|
|
}
|
|
|
|
public function merchant()
|
|
{
|
|
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
|
|
}
|
|
|
|
|
|
public function couponUser(){
|
|
return $this->hasOne(StoreCouponUser::class, 'write_code', 'write_code');
|
|
}
|
|
}
|