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.
|
- <?php
-
- namespace App\Models;
-
- class SmbcPollStatus extends AppModel
- {
- const COL_NAME_CONDITION_DATETIME_TO = 'condition_datetime_to';
-
- protected $casts = [
- self::COL_NAME_CONDITION_DATETIME_TO => 'datetime',
- ];
-
- public function getHistory(): ?HistoryModel
- {
- return null;
- }
-
- public function getModelName(): string
- {
- return "SMBC口座振替登録依頼確認ステータス";
- }
- }
|