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

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