Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

25 lignes
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. }