選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

31 行
913B

  1. <?php
  2. namespace App\Http\Controllers\Web\SeasonTicketContract;
  3. use App\Http\Controllers\Web\BaseParam;
  4. /**
  5. * @property string seasonTicketContractRecordNo
  6. * @property string vehicleTypeName
  7. * @property string parkingUseTypeName
  8. * @property string contractorTypeName
  9. */
  10. class BeforeUpdateParam extends BaseParam
  11. {
  12. public function rules(): array
  13. {
  14. return [
  15. 'user_id' => $this->numeric(),
  16. 'parking_management_code' => $this->str(),
  17. 'season_ticket_seq_no' => $this->numeric(true),
  18. 'vehicle_type_name' => $this->str(),
  19. 'parking_use_type_name' => $this->str(),
  20. 'contractor_type_name' => $this->str(),
  21. 'expiration_start_date' => $this->date(true),
  22. 'expiration_end_date' => $this->date(true),
  23. 'position_memo' => $this->str(true),
  24. 'memo' => $this->str(true),
  25. ];
  26. }
  27. }