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

20 lines
420B

  1. <?php
  2. namespace App\Models;
  3. use App\Models\Feature\ContractFeature;
  4. use App\Models\Feature\ReceiptIssuingOrderFeature;
  5. class ReceiptIssuingOrderTax extends AppModel
  6. {
  7. use ContractFeature, ReceiptIssuingOrderFeature;
  8. const COL_NAME_TAX_RATE = "tax_rate";
  9. const COL_NAME_TAX_AMOUNT = "tax_amount";
  10. public function getModelName(): string
  11. {
  12. return "領収証発行依頼_消費税";
  13. }
  14. }