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

33 行
936B

  1. <?php
  2. namespace App\Http\Controllers\Web\Custom\HelloTechno;
  3. use App\Http\Controllers\Web\BaseParam;
  4. use App\Models\ReceiptIssuingHTParkingCustomOrder as HT;
  5. /**
  6. * @property ?string $customerCode
  7. * @property ?string $customerName
  8. * @property ?string $parkingManagementCode
  9. * @property ?string $parkingName
  10. * @property ?int $adjustSeqNo
  11. */
  12. class ReceiptIssuingsOrdersParam extends BaseParam
  13. {
  14. public function rules(): array
  15. {
  16. return
  17. array_merge(
  18. [
  19. HT::COL_NAME_CUSTOMER_CODE => $this->str(true),
  20. HT::COL_NAME_CUSTOMER_NAME => $this->str(true),
  21. HT::COL_NAME_PARKING_MANAGEMENT_CODE => $this->str(true),
  22. HT::COL_NAME_PARKING_NAME => $this->str(true),
  23. HT::COL_NAME_ADJUST_SEQ_NO => $this->numeric(true),
  24. ],
  25. $this->sortableRules(),
  26. );
  27. }
  28. }