123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- package com.gyee.backconfig.controller;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.gyee.backconfig.config.R;
- import com.gyee.backconfig.model.auto.Windturbine;
- import com.gyee.backconfig.service.auto.IWindturbineService;
- import com.gyee.common.model.StringUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import java.util.List;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author wang
- * @since 2022-09-29
- */
- @RestController
- @RequestMapping("//windturbine")
- public class WindturbineController {
- @Autowired
- private IWindturbineService windturbineService;
- /**
- * 查询
- *
- * @param id
- * @param code
- * @param windpowerstationid
- * @param projectid
- * @param lineid
- * @param pageNum
- * @param pageSize
- * @return
- */
- @GetMapping(value = "/companys")
- public R findList(@RequestParam(value = "id", required = false) String id,
- @RequestParam(value = "code", required = false) String code,
- @RequestParam(value = "windpowerstationid", required = false) String windpowerstationid,
- @RequestParam(value = "projectid", required = false) String projectid,
- @RequestParam(value = "lineid", required = false) String lineid,
- @RequestParam(value = "name", required = false) String name,
- @RequestParam(value = "pageNum", required = true) String pageNum,
- @RequestParam(value = "pageSize", required = true) String pageSize) {
- IPage<Windturbine> list = windturbineService.list(id, code, windpowerstationid, name, projectid, lineid, pageNum, pageSize);
- if (null != list) {
- return R.ok().data(list);
- } else {
- return R.error().data("查询失败!");
- }
- }
- /**
- * 根据id查询
- *
- * @param id
- * @return
- */
- @GetMapping(value = "/{id}")
- public R findOne(@PathVariable("id") String id) {
- Windturbine windturbine = windturbineService.getOne(id);
- if (StringUtils.isNotNull(windturbine)) {
- return R.ok().data(windturbine);
- } else {
- return R.error().data("查询失败!");
- }
- }
- /**
- * 插入(批量)
- *
- * @param windturbine
- * @return
- */
- @PostMapping(value = "/add")
- public R addAll(@RequestBody Windturbine windturbine) {
- boolean b = windturbineService.addOrUpdate(windturbine);
- if (b) {
- return R.ok().data(b);
- } else {
- return R.error().data("保存失败!");
- }
- }
- /**
- * 批量删除
- *
- * @param ids
- * @return
- */
- @DeleteMapping(value = "/{ids}")
- public R deleteAll(@PathVariable("ids") String ids) {
- boolean b = windturbineService.removeByIds(ids);
- if (b) {
- return R.ok().data(b);
- } else {
- return R.error().data("删除失败!");
- }
- }
- /**
- * 批量修改
- *
- * @param list
- * @return
- */
- @PutMapping(value = "/editRegions")
- public R update(@RequestBody List<Windturbine> list) {
- boolean b = windturbineService.updateBatchById(list);
- if (b) {
- return R.ok().data(b);
- } else {
- return R.error().data("更新失败!");
- }
- }
- }
|