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.

14 lines
363B

  1. <?php
  2. namespace App\Kintone\Models\DropDown\SeasonTicketContractSelection;
  3. abstract class SelectionStatus
  4. {
  5. const START = "起票";
  6. const TARGET_SELECTING = "通知者選択中";
  7. const ENTRY_ACCEPTING = "契約希望者受付中";
  8. const RESULT_DECISION = "候補者仮決定";
  9. const FAILED = "選考不調";
  10. const COMPLETE = "終了";
  11. }