'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', ]; /** * @notes 删除场景 * @return UserFinanceValidate * @author BD * @date 2024/03/07 13:10 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 解冻场景 * @return UserFinanceValidate * @author BD * @date 2024/03/07 13:10 */ public function sceneUnfrozen() { return $this->only(['id']); } }