Commit 23d27197 by 田超

Merge branch 'bug/1024120' into 'master'

bug: [1024120] 版权保护没有获取到详细内容

See merge request rays/pcloud-book!1458
parents 168b095d 8d8d7cbb
......@@ -574,6 +574,9 @@ public class BookAuthInfoBizImpl implements BookAuthInfoBiz {
Long bookId =getAuthInfoParam.getBookId();
Long adviserId = getAuthInfoParam.getAdviserId();
Long sceneId = getAuthInfoParam.getSceneId();
if(null!=getAuthInfoParam.getChannelId()){
channelId=getAuthInfoParam.getChannelId();
}
BookAuthInfoVO authBookInfo = getAuthBookInfo(bookId, channelId, adviserId, sceneId, getAuthInfoParam.getAuthBookType());
if (authBookInfo != null) {
BeanUtils.copyProperties(authBookInfo, bookAuthInfoWechatVO);
......
......@@ -25,6 +25,16 @@ public class GetAuthInfoParam implements Serializable {
@ApiModelProperty("书刊类型:0-现代纸书 1-社群书")
private Integer authBookType;
private Long channelId;
public Long getChannelId() {
return channelId;
}
public void setChannelId(Long channelId) {
this.channelId = channelId;
}
public Long getSceneId() {
return sceneId;
}
......
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