'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', ]; /** * @notes 删除场景 * @return WithdrawRecordValidate * @author BD * @date 2024/02/25 12:35 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes udun代付场景 * @return RechargeRecordValidate * @author bd * @date 2024/01/31 14:07 */ public function sceneUdunPay() { return $this->only(['id']); } /** * @notes 同意场景 * @return RechargeRecordValidate * @author bd * @date 2024/01/31 14:07 */ public function sceneAgree() { return $this->only(['id']); } /** * @notes 拒绝场景 * @return RechargeRecordValidate * @author bd * @date 2024/01/31 14:07 */ public function sceneRefuse() { return $this->only(['id']); } }