|
- <?php
-
- namespace App\Http\Controllers\Web\HTICWeb;
-
- use App\Http\Controllers\Web\BaseParam;
- use Illuminate\Support\Carbon;
-
- /**
- * @property string parkingManagementCode
- * @property int seasonTicketSeqNo
- * @property int parkingCharge
- * @property Carbon adjustDatetime
- */
- class AdjustDataParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'parking_management_code' => $this->str(),
- 'season_ticket_seq_no' => $this->numeric(),
- 'parking_charge' => $this->numeric(),
- 'adjust_datetime' => $this->date(),
- ];
- }
- }
|