|
@@ -62,7 +62,7 @@ public class ProductController {
|
|
|
@Operation(summary = "根据报告id查询产品数据信息")
|
|
|
@GetMapping("/getProduct")
|
|
|
public String getProduct(Integer reportId) {
|
|
|
- log.info("开始处理【根据报告id查询产品数据信息】的请求,参数为:{}", reportId);
|
|
|
+ log.info("开始处理【查询产品】的请求,参数为:{}", reportId);
|
|
|
if (reportId != null) {
|
|
|
ProductIncludeFilesVO queryResult = productService.getProduct(reportId);
|
|
|
return Response.success(queryResult);
|