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;
-
- use App\Models\Feature\ContractFeature;
-
- class UseSummary extends AppModel
- {
- use ContractFeature;
-
- const COL_NAME_SUMMARY_YYYYMM = 'summary_yyyymm';
- const COL_NAME_RECEIPT_ORDER_COUNT = 'receipt_order_count';
- const COL_NAME_SMS_SEND_COUNT = 'sms_send_count';
- const COL_NAME_SMS_SEND_COST = 'sms_send_cost';
- const COL_NAME_IS_FIXED = 'is_fixed';
-
-
- public function getModelName(): string
- {
- return "利用実績集計";
- }
- }
|