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

22 lines
382B

  1. <?php
  2. namespace App\Models;
  3. class ReceiptIssuingOrderSeqNumber extends AppModel
  4. {
  5. const COL_NAME_CONTRACT_ID = ColumnName::CONTRACT_ID;
  6. const COL_NAME_SEQ_NUMBER = "seq_number";
  7. public function getModelName(): string
  8. {
  9. return "領収証発行依頼通番管理";
  10. }
  11. public function getHistory(): ?HistoryModel
  12. {
  13. return null;
  14. }
  15. }