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.

25 lines
578B

  1. <?php
  2. namespace App\Http\Controllers\Web\SeasonTicketContract;
  3. use App\Http\Controllers\Web\BaseParam;
  4. use App\Kintone\Models\DropDown\GeneralApplicationType;
  5. use Illuminate\Validation\Rules\Enum;
  6. /**
  7. * @property string $seasonTicketContractRecordNo
  8. * @property string $date
  9. * @property ?string $memo
  10. */
  11. class TerminationOrderParams extends BaseParam
  12. {
  13. public function rules(): array
  14. {
  15. return [
  16. 'season_ticket_contract_record_no' => $this->str(),
  17. 'date' => $this->date(),
  18. 'memo' => $this->str(true),
  19. ];
  20. }
  21. }