| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package cn.com.goldenwater.dcproj.controller.ducha;
- import cn.com.goldenwater.core.web.BaseController;
- import cn.com.goldenwater.core.web.BaseResponse;
- import cn.com.goldenwater.dcproj.model.BisInspYearInfo;
- import cn.com.goldenwater.dcproj.service.BisInspYearInfoService;
- import cn.com.goldenwater.dcproj.service.OlBisInspOrgService;
- import cn.com.goldenwater.dcproj.utils.StringUtils;
- 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.springframework.beans.factory.annotation.Autowired;
- import org.springframework.util.Assert;
- 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 2023年4月6日
- */
- @Api(value = "年度计划批次组数据信息管理",tags="年度计划批次组数据信息管理")
- @RestController
- @RequestMapping("/bis/insp/year/info")
- public class BisInspYearInfoController extends BaseController {
- private Logger logger = LoggerFactory.getLogger(getClass());
- @Autowired
- private BisInspYearInfoService bisInspYearInfoService;
- @Autowired
- private OlBisInspOrgService inspOrgService;
- @ApiOperation(value = "添加年度计划批次组数据")
- @RequestMapping(value = "/", method = RequestMethod.POST)
- public BaseResponse<BisInspYearInfo> insert(@ApiParam(name = "bisInspYearInfo", value = "BisInspYearInfo", required = true) @RequestBody BisInspYearInfo bisInspYearInfo) {
- logger.debug("增加年度计划批次组数据信息");
- if(StringUtils.isBlank(bisInspYearInfo.getId())) {
- String curOrgId = getCurrentOrgId();
- bisInspYearInfo.setOrgId(curOrgId);
- bisInspYearInfo.setAdCode(inspOrgService.getRlProvince(curOrgId));
- bisInspYearInfo.setPersId(getCurrentPersId());
- bisInspYearInfoService.insert(bisInspYearInfo);
- }
- else{
- bisInspYearInfoService.update(bisInspYearInfo);
- }
- return buildSuccessResponse(bisInspYearInfo);
- }
- @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 = bisInspYearInfoService.delete(id);
- return buildSuccessResponse();
- }
- @ApiOperation(value = "更新年度计划批次组数据信息")
- @RequestMapping(value = "/update", method = RequestMethod.POST)
- public BaseResponse<BisInspYearInfo> update(@ApiParam(name = "bisInspYearInfo", value = "BisInspYearInfo", required = true) @RequestBody BisInspYearInfo bisInspYearInfo) {
- Assert.notNull(bisInspYearInfo.getId(), "主键id为必填参数");
- int ret = bisInspYearInfoService.update(bisInspYearInfo);
- return buildSuccessResponse(bisInspYearInfo);
- }
- @ApiOperation(value = "根据ID获取年度计划批次组数据(单表)")
- @RequestMapping(value = "/{id}", method = RequestMethod.GET)
- public BaseResponse<BisInspYearInfo> get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) {
- BisInspYearInfo bisInspYearInfo = bisInspYearInfoService.get(id);
- return buildSuccessResponse(bisInspYearInfo);
- }
- }
|