Commit 94c76e8d by jianan

前端对接问题修复51

parent ed06b296
...@@ -221,12 +221,12 @@ public class ApiPolicyController { ...@@ -221,12 +221,12 @@ public class ApiPolicyController {
*/ */
@GetMapping("/get_policy_product_info") @GetMapping("/get_policy_product_info")
@Operation(summary = "获取保单产品信息") @Operation(summary = "获取保单产品信息")
public Result<List<Map<String, Object>>> getPolicyProductInfo(@RequestParam("productLaunchBizId") List<String> productLaunchBizId) { public Result<List<PolicyProductInfo>> getPolicyProductInfo(@RequestParam("productLaunchBizId") List<String> productLaunchBizId) {
if (productLaunchBizId == null) { if (productLaunchBizId == null) {
return Result.fail(ResultCode.PARAMS_ERROR.getCode(), ResultCode.PARAMS_ERROR.getMessage()); return Result.fail(ResultCode.PARAMS_ERROR.getCode(), ResultCode.PARAMS_ERROR.getMessage());
} }
// 查询 // 查询
List<Map<String, Object>> productLaunchPageResponse = policyService.getPolicyProductInfo(productLaunchBizId); List<PolicyProductInfo> productLaunchPageResponse = policyService.getPolicyProductInfo(productLaunchBizId);
// 获取封装类 // 获取封装类
return Result.success(productLaunchPageResponse); return Result.success(productLaunchPageResponse);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment