123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- package com.gyee.backconfig.controller;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.gyee.backconfig.config.R;
- import com.gyee.backconfig.model.auto.ProBasicPowerstationPoint;
- import com.gyee.backconfig.service.auto.IProBasicPowerstationPointService;
- import com.gyee.common.model.StringUtils;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.web.bind.annotation.*;
- import javax.annotation.Resource;
- import java.util.List;
- /**
- * <p>
- * 场站测点 前端控制器
- * </p>
- *
- * @author wang
- * @since 2022-10-15
- */
- @RestController
- @RequestMapping("//pro-basic-wppoint")
- @Api(value = "场站测点配置" ,tags = "场站测点配置")
- public class ProBasicPowerstationPointController {
- @Resource
- private IProBasicPowerstationPointService proBasicWppointService;
- /**
- * 查询
- *
- * @param id
- * @param nemCode
- * @param name
- * @param model
- * @param uniformCode
- * @param pageNum
- * @param pageSize
- * @return
- */
- @GetMapping(value = "/list")
- @ApiOperation(value = "场站测点-列表", notes = "场站测点-列表")
- public R findList(@RequestParam(value = "id", required = false) String id,
- @RequestParam(value = "nemCode", required = false) String nemCode,
- @RequestParam(value = "name", required = false) String name,
- @RequestParam(value = "model", required = false) String model,
- @RequestParam(value = "uniformCode", required = false) String uniformCode,
- @RequestParam(value = "pageNum", required = true) String pageNum,
- @RequestParam(value = "pageSize", required = true) String pageSize) {
- IPage<ProBasicPowerstationPoint> list = proBasicWppointService.list(id, nemCode, name, model, uniformCode, pageNum, pageSize);
- if (null != list) {
- return R.ok().data(list);
- } else {
- return R.error().data("查询失败!");
- }
- }
- /**
- * 根据id查询
- *
- * @param id
- * @return
- */
- @GetMapping(value = "/{id}")
- @ApiOperation(value = "场站测点-更具主键查询", notes = "场站测点-更具主键查询")
- public R findOne(@PathVariable("id") String id) {
- ProBasicPowerstationPoint pointnew = proBasicWppointService.getOne(id);
- if (StringUtils.isNotNull(pointnew)) {
- return R.ok().data(pointnew);
- } else {
- return R.error().data("查询失败!");
- }
- }
- /**
- * 插入(批量)
- *
- * @param pointnew
- * @return
- */
- @PostMapping(value = "/add")
- @ApiOperation(value = "场站测点-新增(修改)", notes = "场站测点-新增(修改)")
- public R addAll(@RequestBody ProBasicPowerstationPoint pointnew) {
- boolean b = proBasicWppointService.addOrUpdate(pointnew);
- if (b) {
- return R.ok().data(b);
- } else {
- return R.error().data("保存失败!");
- }
- }
- /**
- * 批量删除
- *
- * @param ids
- * @return
- */
- @DeleteMapping(value = "/{ids}")
- @ApiOperation(value = "场站测点-批量删除", notes = "场站测点-批量删除")
- public R deleteAll(@PathVariable("ids") String ids) {
- boolean b = proBasicWppointService.removeByIds(ids);
- if (b) {
- return R.ok().data(b);
- } else {
- return R.error().data("删除失败!");
- }
- }
- /**
- * 批量修改
- *
- * @param list
- * @return
- */
- @PutMapping(value = "/editPointnew")
- @ApiOperation(value = "场站测点-批量修改", notes = "场站测点-批量修改")
- public R update(@RequestBody List<ProBasicPowerstationPoint> list) {
- boolean b = proBasicWppointService.updateBatchById(list);
- if (b) {
- return R.ok().data(b);
- } else {
- return R.error().data("更新失败!");
- }
- }
- }
|