|
@@ -1,9 +1,18 @@
|
|
|
package com.gyee.backconfig.controller;
|
|
|
|
|
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.gyee.backconfig.config.R;
|
|
|
+import com.gyee.backconfig.model.auto.ProBasicWeatherStation;
|
|
|
+import com.gyee.backconfig.service.auto.IProBasicWeatherStationService;
|
|
|
+import com.gyee.common.model.StringUtils;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import java.util.Arrays;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -15,6 +24,81 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("//pro-basic-weather-station")
|
|
|
+@Api(value = "气象站配置" ,tags = "气象站配置")
|
|
|
public class ProBasicWeatherStationController {
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IProBasicWeatherStationService proBasicWeatherStationService;
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping(value = "/List")
|
|
|
+ @ApiOperation(value = "气象站-列表", notes = "气象站-列表")
|
|
|
+ public R findList(@RequestParam(value = "id", required = false) String id,
|
|
|
+ @RequestParam(value = "code", required = false) String code,
|
|
|
+ @RequestParam(value = "name", required = false) String name,
|
|
|
+ @RequestParam(value = "stationId", required = false) String stationId,
|
|
|
+ @RequestParam(value = "pageNum", required = true) String pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = true) String pageSize) {
|
|
|
+ IPage<ProBasicWeatherStation> list = proBasicWeatherStationService.list(id, name,stationId, code, pageNum, pageSize);
|
|
|
+ if (null != list) {
|
|
|
+ return R.ok().data(list);
|
|
|
+ } else {
|
|
|
+ return R.error().data("查询失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据id查询
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/weather/{id}")
|
|
|
+ @ApiOperation(value = "气象站-根据主键查询", notes = "气象站-根据主键查询")
|
|
|
+ public R findOne(@RequestParam("id") String id) {
|
|
|
+ QueryWrapper<ProBasicWeatherStation> qw = new QueryWrapper<>();
|
|
|
+ qw.eq("id", id);
|
|
|
+ ProBasicWeatherStation weatherStation = proBasicWeatherStationService.getOne(qw);
|
|
|
+ if (StringUtils.isNotNull(weatherStation)) {
|
|
|
+ return R.ok().data(weatherStation);
|
|
|
+ } else {
|
|
|
+ return R.error().data("查询失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量插入
|
|
|
+ *
|
|
|
+ * @param weatherStation
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/save")
|
|
|
+ @ApiOperation(value = "气象站-新增or修改", notes = "气象站-新增or修改")
|
|
|
+ public R addAll(@RequestBody ProBasicWeatherStation weatherStation) {
|
|
|
+ boolean b = proBasicWeatherStationService.saveOrUpdate(weatherStation);
|
|
|
+ if (b) {
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("保存失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除
|
|
|
+ *
|
|
|
+ * @param ids
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @DeleteMapping(value = "/remove-weather-station/{ids}")
|
|
|
+ @ApiOperation(value = "气象站-删除", notes = "气象站-删除")
|
|
|
+ public R deleteAll(@PathVariable("ids") String ids) {
|
|
|
+ String[] strings = ids.split(",");
|
|
|
+ boolean b = proBasicWeatherStationService.removeByIds(Arrays.asList(strings));
|
|
|
+ if (b) {
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("删除失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|