You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 line
766B

  1. <?php
  2. namespace App\Http\Controllers\Web\SeasonTicketContract;
  3. use App\Http\Controllers\Web\BaseParam;
  4. use Illuminate\Support\Carbon;
  5. /**
  6. * @property string $seasonTicketContractRecordNo
  7. * @property string $parkingName
  8. * @property Carbon $changeDate
  9. * @property string $vehicleNo
  10. * @property string $registerNo
  11. * @property string $memo
  12. */
  13. class UpdateVehicleInfoOrderParams extends BaseParam
  14. {
  15. public function rules(): array
  16. {
  17. return [
  18. 'season_ticket_contract_record_no' => $this->str(),
  19. 'parking_name' => $this->str(),
  20. 'change_date' => $this->date(),
  21. 'vehicle_no' => $this->str(true),
  22. 'register_no' => $this->str(true),
  23. 'memo' => $this->str(true),
  24. ];
  25. }
  26. }