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 line
459B

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