|
- <?php
-
- namespace App\Kintone\Models;
-
- use Illuminate\Support\Carbon;
-
- /**
- * アプリ名 入金プール
- *
- * @property int customerCode
- * @property string customerName
- * @property int poolAmount
- */
- class Pool extends KintoneModel
- {
- const CONFIG_KEY = "KINTONE_APP_POOL";
-
- const FIELD_CUSTOMER_CODE = "顧客コード";
- const FIELD_CUSTOMER_NAME = "顧客名";
- const FIELD_POOL_AMOUNT = "プール金";
-
- protected const FIELDS = [
- ...parent::FIELDS,
- self::FIELD_CUSTOMER_CODE => FieldType::NUMBER,
- self::FIELD_CUSTOMER_NAME => FieldType::SINGLE_LINE_TEXT,
- self::FIELD_POOL_AMOUNT => FieldType::NUMBER,
- ];
-
- protected const FIELD_NAMES = [
- ...parent::FIELD_NAMES,
- ];
-
- protected const RELATIONS = [
- Customer::class,
- ];
- }
|