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.

24 line
472B

  1. <?php
  2. namespace App\Kintone\Models;
  3. /**
  4. * アプリ名 駐車場マスタ
  5. */
  6. class Paking extends KintoneModel
  7. {
  8. const CONFIG_KEY = "KINTONE_APP_PARKING";
  9. const FIELD_PARKING_NAME = "駐車場名";
  10. protected const FIELDS = [
  11. ...parent::FIELDS,
  12. self::FIELD_PARKING_NAME => FieldType::SINGLE_LINE_TEXT,
  13. ];
  14. protected const FIELD_NAMES = [
  15. ...parent::FIELD_NAMES,
  16. self::FIELD_PARKING_NAME => 'parking_name',
  17. ];
  18. }