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

27 lines
694B

  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_MAIL_ORDER_COUNT = 'mail_order_count';
  12. const COL_NAME_SMS_SEND_COUNT = 'sms_send_count';
  13. const COL_NAME_SMS_SEND_COST = 'sms_send_cost';
  14. const COL_NAME_IS_FIXED = 'is_fixed';
  15. protected $casts = [];
  16. public function getModelName(): string
  17. {
  18. return "利用実績キー毎集計";
  19. }
  20. }