|
- <?php
-
- namespace App\Http\Controllers\Web\SeasonTicketContract\Selection;
-
- use App\Http\Controllers\Web\BaseParam;
-
- /**
- * @property int selectionRecordNo
- * @property int entryRecordNo
- * @property string fs
- */
- class SelectionInfoParams extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'selection_record_no' => $this->numeric(),
- 'entry_record_no' => $this->numeric(),
- 'fs' => $this->str(),
- ];
- }
- }
|