|
- <?php
-
- namespace App\Kintone\Models;
-
- use Illuminate\Support\Carbon;
-
- /**
- * アプリ名 SMBC口座振替結果
- *
- * @property int customerCode
- * @property string customerName
- * @property Carbon paymentDate
- * @property int paymentAmount
- * @property string[] poolDone
- */
- class SmbcAccountTransferResult extends KintoneModel
- {
- const CONFIG_KEY = "KINTONE_APP_SMBC_ACCOUNT_TRANSFER_RESULT";
-
- const FIELD_CUSTOMER_CODE = "顧客コード";
- const FIELD_CUSTOMER_NAME = "顧客名";
- const FIELD_PAYMENT_DATE = "引落日";
- const FIELD_PAYMENT_AMOUNT = "引落金額";
- const FIELD_POOL_DONE = "プール済み";
- const FIELD_RESULT_CODE = "結果コード";
-
- protected const FIELDS = [
- ...parent::FIELDS,
- self::FIELD_CUSTOMER_CODE => FieldType::NUMBER,
- self::FIELD_CUSTOMER_NAME => FieldType::SINGLE_LINE_TEXT,
- self::FIELD_PAYMENT_DATE => FieldType::DATE,
- self::FIELD_PAYMENT_AMOUNT => FieldType::NUMBER,
- self::FIELD_POOL_DONE => FieldType::CHECK_BOX,
- self::FIELD_RESULT_CODE => FieldType::SINGLE_LINE_TEXT,
- ];
-
- protected const FIELD_NAMES = [
- ...parent::FIELD_NAMES,
- ];
- }
|