領収証発行サービス
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.

24 lignes
504B

  1. <?php
  2. namespace App\Models;
  3. class HtCustomParkingName extends AppModel
  4. {
  5. const COL_NAME_CUSTOMER_CODE = "customer_code";
  6. const COL_NAME_PARKING_MANAGEMENT_CODE = "parking_management_code";
  7. const COL_NAME_CUSTOMER_NAME = "customer_name";
  8. const COL_NAME_PARKING_NAME = "parking_name";
  9. public function getModelName(): string
  10. {
  11. return "HT_駐車場名キャッシュテーブル";
  12. }
  13. public function getHistory(): ?HistoryModel
  14. {
  15. return null;
  16. }
  17. }