|
- <?php
-
- namespace App\Kintone\Models;
-
- use Illuminate\Support\Carbon;
-
- /**
- * アプリ名 問い合わせ
- * @property string $genre
- * @property string $ask
- * @property Carbon $askDatetime
- */
- class Ask extends KintoneModel
- {
- const CONFIG_KEY = "KINTONE_APP_ASK";
-
- const FIELD_CUSTOMER_CODE = "顧客コード";
- const FIELD_GENRE = "ジャンル";
- const FIELD_ASK = "問い合わせ";
- const FIELD_ASK_DATETIME = "問い合わせ日時";
-
- protected const FIELDS = [
- ...parent::FIELDS,
- self::FIELD_CUSTOMER_CODE => FieldType::NUMBER,
- self::FIELD_GENRE => FieldType::SINGLE_LINE_TEXT,
- self::FIELD_ASK => FieldType::MULTI_LINE_TEXT,
- self::FIELD_ASK_DATETIME => FieldType::DATETIME,
- ];
-
- protected const FIELD_NAMES = [
- ...parent::FIELD_NAMES,
- ];
-
- protected const RELATIONS = [
- Customer::class,
- ];
- }
|