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

29 lines
753B

  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_CONTRACT_ID = ColumnName::CONTRACT_ID;
  8. const COL_NAME_SUMMARY_YYYYMM = 'summary_yyyymm';
  9. const COL_NAME_SUMMARY_KEY1 = "summary_key1";
  10. const COL_NAME_SUMMARY_KEY2 = "summary_key2";
  11. const COL_NAME_RECEIPT_ORDER_COUNT = 'receipt_order_count';
  12. const COL_NAME_MAIL_ORDER_COUNT = 'mail_order_count';
  13. const COL_NAME_SMS_SEND_COUNT = 'sms_send_count';
  14. const COL_NAME_SMS_SEND_COST = 'sms_send_cost';
  15. const COL_NAME_IS_FIXED = 'is_fixed';
  16. protected $casts = [];
  17. public function getModelName(): string
  18. {
  19. return "利用実績キー毎集計";
  20. }
  21. }