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

20 satır
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. }