feat(admin): 新增后台注单列表查询接口

This commit is contained in:
2026-05-20 16:24:22 +08:00
parent fa87a9d54f
commit 699d43fbd4
5 changed files with 262 additions and 0 deletions

View 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'],
];
}
}