1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/4/7 15:04
- */
- namespace App\Http\Requests;
- use App\Validators\Rules;
- class OrderByCouponRequest extends FormRequest
- {
- public function rules()
- {
- return [
- 'coupon_id' => Rules::id,
- 'order_id' => Rules::id,
- ];
- }
- }
|