Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐少华
midjourney-proxy
Commits
23d27197
Commit
23d27197
authored
Nov 18, 2021
by
田超
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bug/1024120' into 'master'
bug: [1024120] 版权保护没有获取到详细内容 See merge request rays/pcloud-book!1458
parents
168b095d
8d8d7cbb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
BookAuthInfoBizImpl.java
...m/pcloud/book/copyright/biz/impl/BookAuthInfoBizImpl.java
+3
-0
GetAuthInfoParam.java
...n/java/com/pcloud/book/copyright/vo/GetAuthInfoParam.java
+10
-0
No files found.
pcloud-service-book/src/main/java/com/pcloud/book/copyright/biz/impl/BookAuthInfoBizImpl.java
View file @
23d27197
...
...
@@ -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
);
...
...
pcloud-service-book/src/main/java/com/pcloud/book/copyright/vo/GetAuthInfoParam.java
View file @
23d27197
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment