feat(admin): 新增后台注单列表查询接口
This commit is contained in:
38
app/Http/Requests/Admin/TicketItemListRequest.php
Normal file
38
app/Http/Requests/Admin/TicketItemListRequest.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\Admin;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
/**
|
||||
* 管理员注单列表查询请求。
|
||||
*
|
||||
* @see AdminTicketItemIndexController
|
||||
*/
|
||||
final class TicketItemListRequest extends FormRequest
|
||||
{
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, array<int, mixed>>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'page' => ['sometimes', 'integer', 'min:1'],
|
||||
'per_page' => ['sometimes', 'integer', 'min:1', 'max:100'],
|
||||
'size' => ['sometimes', 'integer', 'min:1', 'max:100'],
|
||||
'player_id' => ['sometimes', 'nullable', 'integer', 'min:1'],
|
||||
'player_account' => ['sometimes', 'nullable', 'string', 'max:128'],
|
||||
'draw_no' => ['sometimes', 'nullable', 'string', 'max:32'],
|
||||
'status' => ['sometimes'],
|
||||
'status.*' => ['string', 'max:32'],
|
||||
'number' => ['sometimes', 'nullable', 'string', 'max:64'],
|
||||
'start_date' => ['sometimes', 'nullable', 'date_format:Y-m-d'],
|
||||
'end_date' => ['sometimes', 'nullable', 'date_format:Y-m-d'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user