package cn.com.goldenwater.dcproj.controller.wrwx; import cn.com.goldenwater.dcproj.model.BisInspWrwxRgstrSvwtc; import cn.com.goldenwater.dcproj.param.BisInspWrwxRgstrSvwtcParam; import cn.com.goldenwater.dcproj.service.BisInspWrwxRgstrSvwtcService; import cn.com.goldenwater.core.web.BaseController; import cn.com.goldenwater.core.web.BaseResponse; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; /** * @author lhc * @date 2020-9-23 */ @Api(value = "节约用水-市或县管理",tags="节约用水-市或县管理") @RestController @RequestMapping("/bis/insp/wrwx/svwtc") public class BisInspWrwxRgstrSvwtcController extends BaseController { private Logger logger = LoggerFactory.getLogger(getClass()); @Autowired private BisInspWrwxRgstrSvwtcService bisInspWrwxRgstrSvwtcService; @ApiOperation(value = "添加或修改节约用水-市或县") @RequestMapping(value = "", method = RequestMethod.POST) public BaseResponse insert(@ApiParam(name = "bisInspWrwxRgstrSvwtc", value = "BisInspWrwxRgstrSvwtc", required = true) @RequestBody BisInspWrwxRgstrSvwtc bisInspWrwxRgstrSvwtc) { if (StringUtils.isBlank(bisInspWrwxRgstrSvwtc.getRgstrId())){ return buildFailResponse(); } // 根据有无主键,来新增、更新信息 int ret = 0; if(StringUtils.isBlank(bisInspWrwxRgstrSvwtc.getId())){ BisInspWrwxRgstrSvwtcParam param = new BisInspWrwxRgstrSvwtcParam(); param.setRgstrId(bisInspWrwxRgstrSvwtc.getRgstrId()); BisInspWrwxRgstrSvwtc svwtc = bisInspWrwxRgstrSvwtcService.getBy(param); if (null == svwtc){ ret = bisInspWrwxRgstrSvwtcService.insert(bisInspWrwxRgstrSvwtc); } else { bisInspWrwxRgstrSvwtc.setId(svwtc.getId()); ret = bisInspWrwxRgstrSvwtcService.update(bisInspWrwxRgstrSvwtc); } } else { ret = bisInspWrwxRgstrSvwtcService.update(bisInspWrwxRgstrSvwtc); } return buildSuccessResponse(bisInspWrwxRgstrSvwtc); } @ApiOperation(value = "根据ID删除节约用水-市或县") @RequestMapping(value = "delete/{id}", method = RequestMethod.POST) public BaseResponse delete(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { int ret = bisInspWrwxRgstrSvwtcService.delete(id); return buildSuccessResponse(); } @ApiOperation(value = "根据ID获取节约用水-市或县(单表)") @RequestMapping(value = "/{id}", method = RequestMethod.GET) public BaseResponse get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { BisInspWrwxRgstrSvwtc bisInspWrwxRgstrSvwtc = bisInspWrwxRgstrSvwtcService.get(id); if (null == bisInspWrwxRgstrSvwtc){ bisInspWrwxRgstrSvwtc = new BisInspWrwxRgstrSvwtc(); bisInspWrwxRgstrSvwtc.setRgstrId(id); bisInspWrwxRgstrSvwtcService.insert(bisInspWrwxRgstrSvwtc); } return buildSuccessResponse(bisInspWrwxRgstrSvwtc); } }