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
2da0c543
Commit
2da0c543
authored
Apr 23, 2020
by
裴大威
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feat-zyq-1002764' into 'master'
【1002764】小程序扫码支持扫二维码和社群码 See merge request rays/pcloud-book!657
parents
a5f2fd17
c87b0e5f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
BookGroupService.java
.../java/com/pcloud/book/group/service/BookGroupService.java
+6
-0
BookGroupServiceImpl.java
.../pcloud/book/group/service/impl/BookGroupServiceImpl.java
+6
-0
No files found.
pcloud-facade-book/src/main/java/com/pcloud/book/group/service/BookGroupService.java
View file @
2da0c543
...
...
@@ -215,4 +215,10 @@ public interface BookGroupService {
@ApiOperation
(
"每天增加小程序权益读者数量"
)
@GetMapping
(
"addUserCount4RightsSetting"
)
void
addUserCount4RightsSetting
();
@ApiOperation
(
"根据raysBookId获取特殊二维码的bookGroupId"
)
@RequestMapping
(
value
=
"/getBookGroupId4OldData"
,
method
=
RequestMethod
.
GET
)
ResponseEntity
<
ResponseDto
<
Long
>>
getBookGroupId4OldData
(
@RequestParam
(
value
=
"raysBookId"
)
Long
raysBookId
)
throws
BizException
;
}
pcloud-service-book/src/main/java/com/pcloud/book/group/service/impl/BookGroupServiceImpl.java
View file @
2da0c543
...
...
@@ -375,4 +375,10 @@ public class BookGroupServiceImpl implements BookGroupService {
JedisClusterUtils
.
set
(
key
,
count
.
toString
(),
36
*
3600
);
}
}
@Override
public
ResponseEntity
<
ResponseDto
<
Long
>>
getBookGroupId4OldData
(
Long
raysBookId
)
throws
BizException
{
return
ResponseHandleUtil
.
toResponse
(
bookGroupBiz
.
getBookGroupId4OldData
(
raysBookId
));
}
}
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