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.

29 line
580B

  1. <?php
  2. namespace App\Models\HtpmsCustomer\Deposit;
  3. use App\Models\ColumnName;
  4. use App\Models\HistoryModel;
  5. use App\Models\HtpmsCustomer\HtpmsCustomerAppModel;
  6. /**
  7. * デポジット
  8. */
  9. class Deposit extends HtpmsCustomerAppModel
  10. {
  11. const COL_NAME_SHOP_ID = ColumnName::SHOP_ID; // 店舗ID
  12. const COL_NAME_DEPOSIT = "deposit"; // デポジット残高
  13. protected $table = "tbl3_dep_deposits";
  14. public function getHistory(): ?HistoryModel
  15. {
  16. return null;
  17. }
  18. public function getModelName(): string
  19. {
  20. return "デポジット";
  21. }
  22. }