package cn.com.goldenwater.dcproj.controller.villqh; import cn.com.goldenwater.core.web.BaseController; import cn.com.goldenwater.core.web.BaseResponse; import cn.com.goldenwater.dcproj.model.BisInspVillqhRgstrRelVill; import cn.com.goldenwater.dcproj.param.CountryParam; import cn.com.goldenwater.dcproj.service.BisInspVillqhRgstrRelVillService; 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.web.bind.annotation.*; import java.util.List; /** * @author lhc * @date 2021-2-1 */ @Api(value = "农饮(青海)-登记表与行政村关系管理", tags = "农饮(青海)-登记表与行政村关系管理") @RestController @RequestMapping("/bis/insp/villqh/rel") public class BisInspVillqhRgstrRelVillController extends BaseController { private Logger logger = LoggerFactory.getLogger(getClass()); @Autowired private BisInspVillqhRgstrRelVillService bisInspVillqhRgstrRelVillService; @ApiOperation(value = "修改农饮(青海)-登记表与行政村关系") @RequestMapping(value = "", method = RequestMethod.POST) public BaseResponse insert(@ApiParam(name = "bisInspVillqhRgstrRelVill", value = "BisInspVillqhRgstrRelVill", required = true) @RequestBody BisInspVillqhRgstrRelVill bisInspVillqhRgstrRelVill) { int ret = 0; if (StringUtils.isBlank(bisInspVillqhRgstrRelVill.getId())) { ret = bisInspVillqhRgstrRelVillService.insert(bisInspVillqhRgstrRelVill); } else { ret = bisInspVillqhRgstrRelVillService.update(bisInspVillqhRgstrRelVill); } return buildSuccessResponse(bisInspVillqhRgstrRelVill); } @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 = bisInspVillqhRgstrRelVillService.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) { BisInspVillqhRgstrRelVill bisInspVillqhRgstrRelVill = bisInspVillqhRgstrRelVillService.get(id); return buildSuccessResponse(bisInspVillqhRgstrRelVill); } @ApiOperation(value = "批量添加行政村") @RequestMapping(value = "/addbatch", method = RequestMethod.POST) public BaseResponse addbatch(@ApiParam(name = "countryParam", value = "countryParam", required = true) @RequestBody List countryParamList) { return buildSuccessResponse(bisInspVillqhRgstrRelVillService.addbatch(countryParamList, getCurrentPersId())); } }