package com.artfess.cqlt.controller; import com.alibaba.fastjson.JSONObject; import com.artfess.base.annotation.ApiGroup; import com.artfess.base.constants.ApiGroupConsts; import com.artfess.base.controller.BaseController; import com.artfess.base.model.CommonResult; import com.artfess.cqlt.manager.QfInvestPatentDManager; import com.artfess.cqlt.model.QfInvestPatentD; import com.artfess.cqlt.model.QfInvestPatentM; import com.artfess.cqlt.model.QfInvestProductivityD; import com.artfess.cqlt.vo.ReportReqVo; import com.artfess.i18n.util.I18nUtil; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import lombok.extern.slf4j.Slf4j; import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.web.bind.annotation.*; import java.util.Arrays; import java.util.List; /** * 投资--萨固密集团专利授权数据填报详情表 前端控制器 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-02-23 */ @Slf4j @RestController @Api(tags = "投资--萨固密集团专利授权详情数据") @RequestMapping("/qf/invest/parent/detail") @ApiGroup(group = {ApiGroupConsts.GROUP_BIZ}) public class QfInvestPatentDController extends BaseController { @PostMapping("/batchSave") @ApiOperation("批量添加实体的接口") public CommonResult batchSave(@ApiParam(name = "model", value = "实体信息") @RequestBody QfInvestPatentM t) { boolean result = baseService.batchSave(t); if (!result) { return new CommonResult(false, I18nUtil.getMessage("option.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @PutMapping("/batchUpdate") @ApiOperation("批量更新实体") public CommonResult batchUpdate(@ApiParam(name = "model", value = "实体信息") @RequestBody QfInvestPatentM t) { boolean result = baseService.batchUpdate(t); if (!result) { return new CommonResult(false, I18nUtil.getMessage("option.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @Override @DeleteMapping("/{id}") @ApiOperation("根据id删除") public CommonResult deleteById(@ApiParam(name = "id", value = "实体id") @PathVariable String id) { boolean result = baseService.removeById(id); if (!result) { return new CommonResult(false, I18nUtil.getMessage("delete.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @Override @DeleteMapping("/") @ApiOperation("根据id集合批量删除") public CommonResult deleteByIds(@ApiParam(name = "ids", value = "实体集合") @RequestParam String... ids) { boolean result = baseService.removeByIds(Arrays.asList(ids)); if (!result) { return new CommonResult(false, I18nUtil.getMessage("delete.fail", LocaleContextHolder.getLocale()), null); } return new CommonResult(true, I18nUtil.getMessage("option.success", LocaleContextHolder.getLocale()), null); } @PostMapping("/investmentSituation") @ApiOperation(value = "投资看板--投资情况", notes = "年度投资,包括专利授权情况") public CommonResult investmentSituation(@ApiParam(name = "model", value = "请求参数") @RequestBody ReportReqVo t) { JSONObject data = baseService.investmentSituation(t); return CommonResult.success(data, null); } @PostMapping("/capacitySituation") @ApiOperation(value = "投资看板--产能情况") public CommonResult capacitySituation(@ApiParam(name = "model", value = "请求参数") @RequestBody ReportReqVo t) { List data = baseService.capacitySituation(t); return CommonResult.success(data, null); } }