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.

23 lines
548B

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