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.

19 lines
418B

  1. <?php
  2. namespace App\Models\HtpmsCustomer\QRService;
  3. use App\Models\HtpmsCustomer\HtpmsCustomerHistoryModel;
  4. /**
  5. * QRサービス券駐車場グループ
  6. */
  7. class ServiceParkingGroupHistory extends HtpmsCustomerHistoryModel
  8. {
  9. protected $table = "tbl3_qrs_service_parking_group_histories";
  10. public function getModelName(): string
  11. {
  12. return "QRサービス券駐車場グループ履歴";
  13. }
  14. }