|
@@ -4,6 +4,7 @@ import com.ruoyi.common.core.domain.R;
|
|
import com.ruoyi.common.core.utils.SpringUtils;
|
|
import com.ruoyi.common.core.utils.SpringUtils;
|
|
import com.ruoyi.common.core.utils.StringUtils;
|
|
import com.ruoyi.common.core.utils.StringUtils;
|
|
import com.ruoyi.common.core.web.controller.BaseController;
|
|
import com.ruoyi.common.core.web.controller.BaseController;
|
|
|
|
+import com.ruoyi.common.core.web.page.TableDataInfo;
|
|
import com.ruoyi.common.security.utils.SecurityUtils;
|
|
import com.ruoyi.common.security.utils.SecurityUtils;
|
|
import com.ruoyi.system.api.RemoteDeptService;
|
|
import com.ruoyi.system.api.RemoteDeptService;
|
|
import com.sooka.sponest.event.centereventteventcatalogue.domain.bo.VisuForestCloudTodayEventsBO;
|
|
import com.sooka.sponest.event.centereventteventcatalogue.domain.bo.VisuForestCloudTodayEventsBO;
|
|
@@ -14,10 +15,7 @@ import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.apache.commons.lang3.ArrayUtils;
|
|
import org.apache.commons.lang3.ArrayUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @program: sooka
|
|
* @program: sooka
|
|
@@ -133,4 +131,10 @@ public class CenterEventViewController extends BaseController {
|
|
// visuForestCloudMapVO.setIsHgj(result.getData().toString());
|
|
// visuForestCloudMapVO.setIsHgj(result.getData().toString());
|
|
visuForestCloudMapVO.setIsHgj("false");
|
|
visuForestCloudMapVO.setIsHgj("false");
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @GetMapping("/listAll")
|
|
|
|
+ public TableDataInfo listAll(VisuForestCloudMapVO visuForestCloudMapVO) {
|
|
|
|
+ startPage();
|
|
|
|
+ return getDataTable(centerEventViewService.listAll(visuForestCloudMapVO));
|
|
|
|
+ }
|
|
}
|
|
}
|