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 UseByKeySummary extends AppModel
- {
- use ContractFeature;
-
- const COL_NAME_SUMMARY_YYYYMM = 'summary_yyyymm';
- const COL_NAME_SUMMARY_KEY1 = "summary_key1";
- const COL_NAME_SUMMARY_KEY2 = "summary_key2";
- const COL_NAME_RECEIPT_ORDER_COUNT = 'receipt_order_count';
- const COL_NAME_MAIL_ORDER_COUNT = 'mail_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';
-
- protected $casts = [];
-
- public function getModelName(): string
- {
- return "利用実績キー毎集計";
- }
- }
|