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
607B

  1. <?php
  2. namespace App\Kintone\Models;
  3. /**
  4. * アプリ名 各種申請 [定期券再発行申請]
  5. * @property string $reason
  6. * @property string $memo
  7. */
  8. class SeasonTicketReOrderApplication extends GeneralApplication
  9. {
  10. const FIELD_REASON = "定期券再発行申請_再発行理由";
  11. const FIELD_MEMO = "定期券再発行申請_備考";
  12. protected const FIELDS = [
  13. ...parent::FIELDS,
  14. self::FIELD_REASON => FieldType::MULTI_LINE_TEXT,
  15. self::FIELD_MEMO => FieldType::MULTI_LINE_TEXT,
  16. ];
  17. protected const FIELD_NAMES = [
  18. ...parent::FIELD_NAMES,
  19. ];
  20. }