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 lines
548B

  1. <?php
  2. namespace App\Models\HtpmsCustomer\Mst;
  3. use App\Models\ColumnName;
  4. use App\Models\HtpmsCustomer\HtpmsCustomerAppModel;
  5. /**
  6. * 店舗番号紐づけ
  7. */
  8. class ShopNoRelation extends HtpmsCustomerAppModel
  9. {
  10. const COL_NAME_SHOP_ID = ColumnName::SHOP_ID;
  11. const COL_NAME_PARKING_MANAGEMENT_CODE = ColumnName::PARKING_MANAGEMENT_CODE;
  12. const COL_NAME_SHOP_NO = ColumnName::SHOP_NO;
  13. protected $table = "tbl3_mst_shop_no_relations";
  14. public function getModelName(): string
  15. {
  16. return "店舗番号紐づけ";
  17. }
  18. }