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

24 lines
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. }