|
- <?php
-
- namespace App\Kintone\Models;
-
- /**
- * アプリ名 各種申請 [プラン変更申請]
- * @property string planNameBefore
- * @property string planNameAfter
- * @property string memo
- */
- class ChangePlanApplication extends GeneralApplication
- {
- const FIELD_PLAN_NAME_BEFORE = "プラン変更申請_変更前_プラン名";
- const FIELD_PLAN_NAME_AFTER = "プラン変更申請_変更後_プラン名";
- const FIELD_MEMO = "プラン変更申請_備考";
-
- protected const FIELDS = [
- ...parent::FIELDS,
- self::FIELD_PLAN_NAME_BEFORE => FieldType::SINGLE_LINE_TEXT,
- self::FIELD_PLAN_NAME_AFTER => FieldType::SINGLE_LINE_TEXT,
- self::FIELD_MEMO => FieldType::MULTI_LINE_TEXT,
- ];
-
- protected const FIELD_NAMES = [
- ...parent::FIELD_NAMES,
- ];
- }
|