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.
|
- <?php
-
- namespace App\Models\HtpmsCustomer\QRService;
-
- use App\Models\ColumnName;
- use App\Models\HtpmsCustomer\HtpmsCustomerAppModel;
-
- /**
- * QRサービス券駐車場グループ
- */
- class ServiceParkingGroup extends HtpmsCustomerAppModel
- {
- const COL_NAME_NAME = 'name'; // グループ名
-
-
- protected $table = "tbl3_qrs_service_parking_groups";
-
-
- public function getModelName(): string
- {
- return "QRサービス券駐車場グループ";
- }
- }
|