You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
444 B
22 lines
444 B
<?php
|
|
namespace app\api\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class CouponValidate extends Validate
|
|
{
|
|
protected $rule = [
|
|
'coupon_id' => 'require',
|
|
'user_id' => 'require'
|
|
];
|
|
|
|
protected $message = [
|
|
'coupon_id.require' => '优惠券ID不能为空',
|
|
'user_id.require' => '用户ID不能为空',
|
|
];
|
|
|
|
public function sceneGetCoupon()
|
|
{
|
|
return $this->only(['coupon_id', 'user_id']);
|
|
}
|
|
}
|