|
- <?php
-
- namespace App\Http\Controllers\Web\RobotPayment\BanckCheck;
-
- use App\Http\Controllers\Web\BaseParam;
-
- /**
- * @property string $aid
- * @property string $cod
- * @property string $am
- * @property string $tx
- * @property string $sf
- * @property string $customerCode カスタム-顧客コード
- * @property int $entryRecordNo カスタム-定期申込レコード番号
- */
- class RegisterParam extends BaseParam
- {
- public function rules(): array
- {
- return [
- 'aid' => $this->str(),
- 'cod' => $this->str(),
- 'jb' => $this->str(true),
- 'am' => $this->str(),
- 'tx' => $this->str(),
- 'sf' => $this->numeric(),
- 'customer_code' => $this->str(),
- 'entry_record_no' => $this->numeric(),
- ];
- }
- }
|