Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?php
-
- namespace App\Models;
-
-
- class HtCustomParkingName extends AppModel
- {
- const COL_NAME_CUSTOMER_CODE = "customer_code";
- const COL_NAME_PARKING_MANAGEMENT_CODE = "parking_management_code";
- const COL_NAME_CUSTOMER_NAME = "customer_name";
- const COL_NAME_PARKING_NAME = "parking_name";
-
-
- public function getModelName(): string
- {
- return "HT_駐車場名キャッシュテーブル";
- }
-
- public function getHistory(): ?HistoryModel
- {
- return null;
- }
- }
|