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

24 lines
487B

  1. <?php
  2. namespace App\Models;
  3. use App\Codes\SMSProvicer;
  4. use App\Models\Feature\ContractFeature;
  5. use App\Models\Feature\SMSSendOrderFeature;
  6. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  7. class SMSProviderFourSMessageCommunication extends AppModel
  8. {
  9. use ContractFeature, SMSSendOrderFeature;
  10. public function getModelName(): string
  11. {
  12. return "FourSMessage通信実績";
  13. }
  14. public function getHistory(): ?HistoryModel
  15. {
  16. return null;
  17. }
  18. }