Commit 4b749e10 by 阮思源

Merge branch 'feat-rsy-1002852' into 'master'

1002852小睿优化-编辑端配置小睿二维码资源优化

See merge request rays/pcloud-book!706
parents a8a49137 b246461f
...@@ -2737,6 +2737,7 @@ public class BookGroupBizImpl implements BookGroupBiz { ...@@ -2737,6 +2737,7 @@ public class BookGroupBizImpl implements BookGroupBiz {
ProductDto productDto = productDtoMap.get(bookGroupServe.getServeId()); ProductDto productDto = productDtoMap.get(bookGroupServe.getServeId());
if (productDto != null) { if (productDto != null) {
bookGroupServe.setServeName(productDto.getProductName()); bookGroupServe.setServeName(productDto.getProductName());
bookGroupServe.setPicUrl(productDto.getCoverImg());
if (productDto.getProductTypeDto() != null) { if (productDto.getProductTypeDto() != null) {
bookGroupServe.setFromType(productDto.getProductTypeDto().getTypeCode()); bookGroupServe.setFromType(productDto.getProductTypeDto().getTypeCode());
} }
...@@ -2748,6 +2749,7 @@ public class BookGroupBizImpl implements BookGroupBiz { ...@@ -2748,6 +2749,7 @@ public class BookGroupBizImpl implements BookGroupBiz {
if (appDto != null) { if (appDto != null) {
bookGroupServe.setServeName(appDto.getTitle()); bookGroupServe.setServeName(appDto.getTitle());
bookGroupServe.setFromType(appDto.getTypeCode()); bookGroupServe.setFromType(appDto.getTypeCode());
bookGroupServe.setPicUrl(appDto.getSquareImg());
} }
} }
} }
......
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