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.

19 lines
368B

  1. <?php
  2. namespace App\Models\HtpmsCustomer\Mst;
  3. use App\Models\HtpmsCustomer\HtpmsCustomerHistoryModel;
  4. /**
  5. * 店舗番号紐づけ履歴
  6. */
  7. class ShopNoRelationHistory extends HtpmsCustomerHistoryModel
  8. {
  9. protected $table = "tbl3_mst_shop_no_relation_histories";
  10. public function getModelName(): string
  11. {
  12. return "店舗マスタ履歴";
  13. }
  14. }