'ID', 'store_id' => 'Store ID', 'user_id' => 'User ID', 'coupon_id' => 'Coupon ID', 'coupon_auto_send_id' => '自动发放id', 'begin_time' => '有效期开始时间', 'end_time' => '有效期结束时间', 'is_expire' => '是否已过期:0=未过期,1=已过期', 'is_use' => '是否已使用:0=未使用,1=已使用', 'is_delete' => 'Is Delete', 'addtime' => 'Addtime', 'type' => '领取类型 0--平台发放 1--自动发放 2--领券中心领取 3--积分商城', 'integral' => '支付积分', 'price' => '支付价钱', ]; } public function getCoupon() { return $this->hasOne(Coupon::className(), ['id'=>'coupon_id']); } public function getUser() { // return $this->hasOne(Coupon::className(),['coupon_id'=>'id']); return $this->hasOne(User::className(), ['id'=>'user_id']); } }