Commit 6b30100b by zhangxingmin

push

parent 4450fa9b
...@@ -187,10 +187,10 @@ public class ApiProductLaunchServiceImpl implements ApiProductLaunchService { ...@@ -187,10 +187,10 @@ public class ApiProductLaunchServiceImpl implements ApiProductLaunchService {
apiProductLaunchDto.setApiProjectDtoList(apiProjectDtoList(productLaunch.getProjectBizIdList())); apiProductLaunchDto.setApiProjectDtoList(apiProjectDtoList(productLaunch.getProjectBizIdList()));
apiProductLaunchDto.setProjectBizIdList(StringUtils.isNotBlank(productLaunch.getProjectBizIdList()) ? Arrays.asList(productLaunch.getProjectBizIdList().split(";").clone()) : new ArrayList<>()); apiProductLaunchDto.setProjectBizIdList(StringUtils.isNotBlank(productLaunch.getProjectBizIdList()) ? Arrays.asList(productLaunch.getProjectBizIdList().split(";").clone()) : new ArrayList<>());
if (StringUtils.isNotBlank(productLaunch.getProductBizId())) { // if (StringUtils.isNotBlank(productLaunch.getProductBizId())) {
Product product = iProductService.queryOne(productLaunch.getProductBizId()); // Product product = iProductService.queryOne(productLaunch.getProductBizId());
apiProductLaunchDto.setTitle(!Objects.isNull(product) ? product.getProductName() : ""); // apiProductLaunchDto.setTitle(!Objects.isNull(product) ? product.getProductName() : "");
} // }
response.setApiProductLaunchDto(apiProductLaunchDto); response.setApiProductLaunchDto(apiProductLaunchDto);
//设置的产品上架信息的参数列表 //设置的产品上架信息的参数列表
...@@ -332,6 +332,8 @@ public class ApiProductLaunchServiceImpl implements ApiProductLaunchService { ...@@ -332,6 +332,8 @@ public class ApiProductLaunchServiceImpl implements ApiProductLaunchService {
return Result.success(productLaunchBizId); return Result.success(productLaunchBizId);
} }
/** /**
* 审核-产品上架信息 * 审核-产品上架信息
* @param request * @param request
......
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