Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

24 Zeilen
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. }