package cn.com.goldenwater.dcproj.controller.rlrw; import cn.com.goldenwater.core.web.BaseController; import cn.com.goldenwater.core.web.BaseResponse; import cn.com.goldenwater.dcproj.model.AttRlrwBase; import cn.com.goldenwater.dcproj.service.AttRlrwBaseService; import cn.com.goldenwater.id.util.UuidUtil; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.util.Assert; import org.springframework.web.bind.annotation.*; /** * @author lhc * @date 2021-1-19 */ @Api(value = "xxx管理", tags = "xxx管理") @RestController @RequestMapping("/att/rlrw/base") public class AttRlrwBaseController extends BaseController { private Logger logger = LoggerFactory.getLogger(getClass()); @Autowired private AttRlrwBaseService attRlrwBaseService; @ApiOperation(value = "添加/修改退地减水地块基础信息表") @RequestMapping(value = "", method = RequestMethod.POST) public BaseResponse insert(@ApiParam(name = "attRlrwBase", value = "AttRlrwBase", required = true) @RequestBody AttRlrwBase attRlrwBase) { if (StringUtils.isBlank(attRlrwBase.getLandCode())) { // 生成uuid String uuid = UuidUtil.uuid(); attRlrwBase.setLandCode(uuid); attRlrwBaseService.insert(attRlrwBase); } else { attRlrwBaseService.update(attRlrwBase); } return buildSuccessResponse(attRlrwBase); } @ApiOperation(value = "根据ID删除xxx") @RequestMapping(value = "delete/{id}", method = RequestMethod.POST) public BaseResponse delete(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { int ret = attRlrwBaseService.delete(id); return buildSuccessResponse(); } @ApiOperation(value = "更新xxx信息") @RequestMapping(value = "/update", method = RequestMethod.POST) public BaseResponse update(@ApiParam(name = "attRlrwBase", value = "AttRlrwBase", required = true) @RequestBody AttRlrwBase attRlrwBase) { Assert.notNull(attRlrwBase.getLandCode(), "主键id为必填参数"); int ret = attRlrwBaseService.update(attRlrwBase); return buildSuccessResponse(attRlrwBase); } @ApiOperation(value = "根据ID获取xxx(单表)") @RequestMapping(value = "/{id}", method = RequestMethod.GET) public BaseResponse get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) { AttRlrwBase attRlrwBase = attRlrwBaseService.get(id); return buildSuccessResponse(attRlrwBase); } @ApiOperation(value = "根据 objId 获取退地减水地块基本信息(单表)") @RequestMapping(value = "/getObjId/{objId}", method = RequestMethod.POST) public BaseResponse getObjId(@ApiParam(name = "objId", value = "objId", required = true) @PathVariable String objId) { AttRlrwBase attCdepBase = attRlrwBaseService.getObjId(objId); return buildSuccessResponse(attCdepBase); } }