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

16 lines
228B

  1. <?php
  2. namespace App\Models;
  3. class SMSProvider extends AppModel
  4. {
  5. const COL_NAME_PROVIDER_NAME = 'provider_name';
  6. public function getModelName(): string
  7. {
  8. return "SMSプロバイダーマスタ";
  9. }
  10. }