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

26 lines
422B

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