領収証発行サービス
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.

23 lines
495B

  1. <?php
  2. namespace App\Models;
  3. use App\Models\Feature\ContractFeature;
  4. class UseSummary extends AppModel
  5. {
  6. use ContractFeature;
  7. const COL_NAME_SUMMARY_YYYYMM = 'summary_yyyymm';
  8. const COL_NAME_RECEIPT_ORDER_COUNT = 'receipt_order_count';
  9. const COL_NAME_SMS_SEND_COUNT = 'sms_send_count';
  10. const COL_NAME_SMS_SEND_COST = 'sms_send_cost';
  11. const COL_NAME_IS_FIXED = 'is_fixed';
  12. public function getModelName(): string
  13. {
  14. return "利用実績集計";
  15. }
  16. }