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

20 行
478B

  1. <?php
  2. namespace App\Models;
  3. use App\Models\Feature\ReceiptIssuingOrderFeature;
  4. class ReceiptIssuingHTParkingCustomOrder extends AppModel
  5. {
  6. use ReceiptIssuingOrderFeature;
  7. const COL_NAME_CUSTOMER_CODE = "customer_code";
  8. const COL_NAME_PARKING_MANAGEMENT_CODE = "parking_management_code";
  9. const COL_NAME_ADJUST_SEQ_NO = "adjust_seq_no";
  10. public function getModelName(): string
  11. {
  12. return "領収証発行依頼(HT駐車場カスタム)";
  13. }
  14. }