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
b0ac0c1b
Commit
b0ac0c1b
authored
Feb 08, 2021
by
朱亚洁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:[none]二维码筛选
parent
2b7a5f6d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
BookGroupFacade.java
...in/java/com/pcloud/book/group/facade/BookGroupFacade.java
+2
-1
BookGroupFacadeImpl.java
...om/pcloud/book/group/facade/impl/BookGroupFacadeImpl.java
+3
-1
Book.Mapper.xml
...rvice-book/src/main/resources/mapper/book/Book.Mapper.xml
+3
-0
No files found.
pcloud-service-book/src/main/java/com/pcloud/book/group/facade/BookGroupFacade.java
View file @
b0ac0c1b
...
@@ -170,7 +170,8 @@ public interface BookGroupFacade {
...
@@ -170,7 +170,8 @@ public interface BookGroupFacade {
@RequestParam
(
value
=
"purLabelId"
,
required
=
false
)
@ApiParam
(
"目的"
)
Long
purLabelId
,
@RequestParam
(
value
=
"purLabelId"
,
required
=
false
)
@ApiParam
(
"目的"
)
Long
purLabelId
,
@RequestParam
(
value
=
"firstClassifyId"
,
required
=
false
)
@ApiParam
(
"分类"
)
Long
firstClassifyId
,
@RequestParam
(
value
=
"firstClassifyId"
,
required
=
false
)
@ApiParam
(
"分类"
)
Long
firstClassifyId
,
@RequestParam
(
value
=
"gradeLabelId"
,
required
=
false
)
@ApiParam
(
"年级"
)
Long
gradeLabelId
,
@RequestParam
(
value
=
"gradeLabelId"
,
required
=
false
)
@ApiParam
(
"年级"
)
Long
gradeLabelId
,
@RequestParam
(
value
=
"subjectLabelId"
,
required
=
false
)
@ApiParam
(
"科目"
)
Long
subjectLabelId
)
@RequestParam
(
value
=
"subjectLabelId"
,
required
=
false
)
@ApiParam
(
"科目"
)
Long
subjectLabelId
,
@RequestParam
(
value
=
"jumpType"
,
required
=
false
)
Integer
jumpType
)
throws
BizException
,
PermissionException
;
throws
BizException
,
PermissionException
;
@ApiOperation
(
value
=
"获取社群书列表(运营)"
,
httpMethod
=
"POST"
)
@ApiOperation
(
value
=
"获取社群书列表(运营)"
,
httpMethod
=
"POST"
)
...
...
pcloud-service-book/src/main/java/com/pcloud/book/group/facade/impl/BookGroupFacadeImpl.java
View file @
b0ac0c1b
...
@@ -249,7 +249,8 @@ public class BookGroupFacadeImpl implements BookGroupFacade {
...
@@ -249,7 +249,8 @@ public class BookGroupFacadeImpl implements BookGroupFacade {
@RequestParam
(
value
=
"purLabelId"
,
required
=
false
)
@ApiParam
(
"目的"
)
Long
purLabelId
,
@RequestParam
(
value
=
"purLabelId"
,
required
=
false
)
@ApiParam
(
"目的"
)
Long
purLabelId
,
@RequestParam
(
value
=
"firstClassifyId"
,
required
=
false
)
@ApiParam
(
"分类"
)
Long
firstClassifyId
,
@RequestParam
(
value
=
"firstClassifyId"
,
required
=
false
)
@ApiParam
(
"分类"
)
Long
firstClassifyId
,
@RequestParam
(
value
=
"gradeLabelId"
,
required
=
false
)
@ApiParam
(
"年级"
)
Long
gradeLabelId
,
@RequestParam
(
value
=
"gradeLabelId"
,
required
=
false
)
@ApiParam
(
"年级"
)
Long
gradeLabelId
,
@RequestParam
(
value
=
"subjectLabelId"
,
required
=
false
)
@ApiParam
(
"科目"
)
Long
subjectLabelId
)
@RequestParam
(
value
=
"subjectLabelId"
,
required
=
false
)
@ApiParam
(
"科目"
)
Long
subjectLabelId
,
@RequestParam
(
value
=
"jumpType"
,
required
=
false
)
Integer
jumpType
)
throws
BizException
,
PermissionException
{
throws
BizException
,
PermissionException
{
Long
adviserId
=
(
Long
)
SessionUtil
.
getVlaue
(
token
,
SessionUtil
.
PARTY_ID
);
Long
adviserId
=
(
Long
)
SessionUtil
.
getVlaue
(
token
,
SessionUtil
.
PARTY_ID
);
if
(
currentPage
==
null
||
numPerPage
==
null
||
currentPage
<
0
||
numPerPage
<
0
)
{
if
(
currentPage
==
null
||
numPerPage
==
null
||
currentPage
<
0
||
numPerPage
<
0
)
{
...
@@ -281,6 +282,7 @@ public class BookGroupFacadeImpl implements BookGroupFacade {
...
@@ -281,6 +282,7 @@ public class BookGroupFacadeImpl implements BookGroupFacade {
}
}
paramMap
.
put
(
"hasServe"
,
hasServe
);
paramMap
.
put
(
"hasServe"
,
hasServe
);
paramMap
.
put
(
"isPrint"
,
isPrint
);
paramMap
.
put
(
"isPrint"
,
isPrint
);
paramMap
.
put
(
"jumpType"
,
jumpType
);
PageBean
pageBean
=
bookGroupBiz
.
listBookGroup4Adviser
(
paramMap
,
new
PageParam
(
currentPage
,
numPerPage
),
adviserId
);
PageBean
pageBean
=
bookGroupBiz
.
listBookGroup4Adviser
(
paramMap
,
new
PageParam
(
currentPage
,
numPerPage
),
adviserId
);
return
new
ResponseDto
<>(
pageBean
);
return
new
ResponseDto
<>(
pageBean
);
}
}
...
...
pcloud-service-book/src/main/resources/mapper/book/Book.Mapper.xml
View file @
b0ac0c1b
...
@@ -730,6 +730,9 @@
...
@@ -730,6 +730,9 @@
${item}
${item}
</foreach>
</foreach>
</if>
</if>
<if
test=
"jumpType != null"
>
AND G.jump_type = #{jumpType} AND G.join_group_type = 4
</if>
GROUP BY G.id
GROUP BY G.id
<if
test=
"hasServe!=null and hasServe==true"
>
<if
test=
"hasServe!=null and hasServe==true"
>
having has_serve=1
having has_serve=1
...
...
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