Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

19 lines
340B

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