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

25 lines
406B

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