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

26 line
636B

  1. <?php
  2. namespace App\Models;
  3. use App\Models\Feature\ContractFeature;
  4. class UseByKeySummary extends AppModel
  5. {
  6. use ContractFeature;
  7. const COL_NAME_SUMMARY_YYYYMM = 'summary_yyyymm';
  8. const COL_NAME_SUMMARY_KEY1 = "summary_key1";
  9. const COL_NAME_SUMMARY_KEY2 = "summary_key2";
  10. const COL_NAME_RECEIPT_ORDER_COUNT = 'receipt_order_count';
  11. const COL_NAME_SMS_SEND_COUNT = 'sms_send_count';
  12. const COL_NAME_SMS_SEND_COST = 'sms_send_cost';
  13. const COL_NAME_IS_FIXED = 'is_fixed';
  14. protected $casts = [];
  15. public function getModelName(): string
  16. {
  17. return "利用実績キー毎集計";
  18. }
  19. }