|
- <?php
-
- namespace App\Http\Controllers\Web\Custom\HelloTechno;
-
- use App\Http\Controllers\Web\BaseParam;
-
- /**
- * @property string $customerCode
- * @property string $parkingManagementCode
- * @property int $adjustSeqNo
- */
- class AdjustDataParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'customer_code' => $this->str(),
- 'parking_management_code' => $this->str(),
- 'adjust_seq_no' => $this->numeric(),
- ];
- }
- }
|