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

  1. <?php
  2. namespace App\Models\HtpmsCustomer\QRService;
  3. use App\Models\ColumnName;
  4. use App\Models\HtpmsCustomer\HtpmsCustomerAppModel;
  5. /**
  6. * QRサービス券駐車場グループ
  7. */
  8. class ServiceParkingGroup extends HtpmsCustomerAppModel
  9. {
  10. const COL_NAME_NAME = 'name'; // グループ名
  11. protected $table = "tbl3_qrs_service_parking_groups";
  12. public function getModelName(): string
  13. {
  14. return "QRサービス券駐車場グループ";
  15. }
  16. }