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\Mst;
-
- use App\Models\ColumnName;
- use App\Models\HtpmsCustomer\HtpmsCustomerAppModel;
-
- /**
- * 店舗番号紐づけ
- */
- class ShopNoRelation extends HtpmsCustomerAppModel
- {
- const COL_NAME_SHOP_ID = ColumnName::SHOP_ID;
- const COL_NAME_PARKING_MANAGEMENT_CODE = ColumnName::PARKING_MANAGEMENT_CODE;
- const COL_NAME_SHOP_NO = ColumnName::SHOP_NO;
-
- protected $table = "tbl3_mst_shop_no_relations";
-
- public function getModelName(): string
- {
- return "店舗番号紐づけ";
- }
- }
|