領収証発行サービス
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
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. }