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.
|
- <?php
-
- namespace App\Models\HtpmsCustomer\Deposit;
-
- use App\Models\ColumnName;
- use App\Models\HistoryModel;
- use App\Models\HtpmsCustomer\HtpmsCustomerAppModel;
-
- /**
- * デポジット
- */
- class Deposit extends HtpmsCustomerAppModel
- {
- const COL_NAME_SHOP_ID = ColumnName::SHOP_ID; // 店舗ID
- const COL_NAME_DEPOSIT = "deposit"; // デポジット残高
-
- protected $table = "tbl3_dep_deposits";
-
- public function getHistory(): ?HistoryModel
- {
- return null;
- }
-
- public function getModelName(): string
- {
- return "デポジット";
- }
- }
|