123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package com.gyee.backconfig.controller;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.gyee.backconfig.config.CacheContext;
- import com.gyee.backconfig.config.R;
- import com.gyee.backconfig.model.auto.ProBasicPowerstation;
- import com.gyee.backconfig.service.auto.IProBasicPowerstationService;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import io.swagger.annotations.ApiParam;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import javax.annotation.Resource;
- import java.util.Arrays;
- /**
- * <p>
- * 场站表 前端控制器
- * </p>
- *
- * @author wang
- * @since 2022-10-15
- */
- @RestController
- @RequestMapping("//pro-basic-powerstation")
- @Api(value = "场站配置" ,tags = "场站配置")
- public class ProBasicPowerstationController {
- @Resource
- private IProBasicPowerstationService proBasicWindpowerstationService;
- @Autowired
- private CacheContext cacheContext;
- /**
- * 查询
- *
- * @param id
- * @param name
- * @param code
- * @param companyId
- * @param pageNum
- * @param pageSize
- * @return
- */
- @GetMapping(value = "/List")
- @ApiOperation(value = "场站-列表", notes = "场站-列表")
- public R findList(@RequestParam(value = "id", required = false) String id,
- @RequestParam(value = "name", required = false) String name,
- @RequestParam(value = "code", required = false) String code,
- @RequestParam(value = "companyId", required = false) String companyId,
- @RequestParam(value = "groupId", required = false) String groupId,
- @RequestParam(value = "regionId", required = false) String regionId,
- @RequestParam(value = "pageNum", required = true) String pageNum,
- @RequestParam(value = "pageSize", required = true) String pageSize) {
- IPage<ProBasicPowerstation> list = proBasicWindpowerstationService.getList(id, name, code, groupId,companyId,regionId, pageNum, pageSize);
- if (null != list) {
- return R.ok().data(list);
- } else {
- return R.error().data("查询失败!");
- }
- }
- /**
- * 插入(批量)
- *
- * @param proBasicWindpowerstation
- * @return
- */
- @PostMapping(value = "/add")
- @ApiOperation(value = "场站-新增or修改", notes = "场站-新增or修改")
- public R addAll(@RequestBody ProBasicPowerstation proBasicWindpowerstation) {
- boolean b = proBasicWindpowerstationService.saveOrUpdate(proBasicWindpowerstation);
- if (b) {
- cacheContext.initPowerstationList();
- 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) {
- String[] strings = ids.split(",");
- boolean b = proBasicWindpowerstationService.removeByIds(Arrays.asList(strings));
- if (b) {
- cacheContext.initPowerstationList();
- return R.ok().data(b);
- } else {
- return R.error().data("删除失败!");
- }
- }
- }
|