|
- <?php
-
- namespace App\Http\Controllers\Web\SeasonTicketContract;
-
- use App\Http\Controllers\Web\BaseParam;
-
- /**
- * @property string seasonTicketContractRecordNo
- * @property string vehicleTypeName
- * @property string parkingUseTypeName
- * @property string contractorTypeName
- */
- class BeforeUpdateParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'user_id' => $this->numeric(),
- 'parking_management_code' => $this->str(),
- 'season_ticket_seq_no' => $this->numeric(true),
- 'vehicle_type_name' => $this->str(),
- 'parking_use_type_name' => $this->str(),
- 'contractor_type_name' => $this->str(),
- 'expiration_start_date' => $this->date(true),
- 'expiration_end_date' => $this->date(true),
- 'position_memo' => $this->str(true),
- 'memo' => $this->str(true),
- ];
- }
- }
|