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.

28 lines
807B

  1. <?php
  2. namespace App\Kintone\Models;
  3. /**
  4. * アプリ名 各種申請 [プラン変更申請]
  5. * @property string planNameBefore
  6. * @property string planNameAfter
  7. * @property string memo
  8. */
  9. class ChangePlanApplication extends GeneralApplication
  10. {
  11. const FIELD_PLAN_NAME_BEFORE = "プラン変更申請_変更前_プラン名";
  12. const FIELD_PLAN_NAME_AFTER = "プラン変更申請_変更後_プラン名";
  13. const FIELD_MEMO = "プラン変更申請_備考";
  14. protected const FIELDS = [
  15. ...parent::FIELDS,
  16. self::FIELD_PLAN_NAME_BEFORE => FieldType::SINGLE_LINE_TEXT,
  17. self::FIELD_PLAN_NAME_AFTER => FieldType::SINGLE_LINE_TEXT,
  18. self::FIELD_MEMO => FieldType::MULTI_LINE_TEXT,
  19. ];
  20. protected const FIELD_NAMES = [
  21. ...parent::FIELD_NAMES,
  22. ];
  23. }