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
f03575fe
Commit
f03575fe
authored
Sep 25, 2019
by
阮思源
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加个字段
parent
c313baa9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
BookDto.java
...-book/src/main/java/com/pcloud/book/book/dto/BookDto.java
+15
-1
Book.Mapper.xml
...rvice-book/src/main/resources/mapper/book/Book.Mapper.xml
+2
-1
No files found.
pcloud-facade-book/src/main/java/com/pcloud/book/book/dto/BookDto.java
View file @
f03575fe
...
...
@@ -567,6 +567,11 @@ public class BookDto extends BaseDto {
*/
private
Integer
friendsCount
;
/**
* 社群码暗号
*/
private
String
bookGroupCipher
;
public
String
getQrRemark
()
{
return
qrRemark
;
}
...
...
@@ -1515,6 +1520,14 @@ public class BookDto extends BaseDto {
this
.
friendsCount
=
friendsCount
;
}
public
String
getBookGroupCipher
()
{
return
bookGroupCipher
;
}
public
void
setBookGroupCipher
(
String
bookGroupCipher
)
{
this
.
bookGroupCipher
=
bookGroupCipher
;
}
@Override
public
String
toString
()
{
return
"BookDto{"
+
...
...
@@ -1629,6 +1642,7 @@ public class BookDto extends BaseDto {
", phone='"
+
phone
+
'\''
+
", joinGroupType="
+
joinGroupType
+
", friendsCount="
+
friendsCount
+
'}'
;
", bookGroupCipher='"
+
bookGroupCipher
+
'\''
+
"} "
+
super
.
toString
();
}
}
pcloud-service-book/src/main/resources/mapper/book/Book.Mapper.xml
View file @
f03575fe
...
...
@@ -54,6 +54,7 @@
<result
column=
"SECOND_TYPE_CODE"
property=
"secondTypeCode"
jdbcType=
"BIGINT"
/>
<result
column=
"BOOK_GROUP_ID"
property=
"bookGroupId"
jdbcType=
"BIGINT"
/>
<result
column=
"join_group_type"
property=
"joinGroupType"
jdbcType=
"INTEGER"
/>
<result
column=
"book_group_cipher"
property=
"bookGroupCipher"
jdbcType=
"VARCHAR"
/>
</resultMap>
<resultMap
id=
"bookListPageMap"
type=
"bookDto"
extends =
"bookMap"
>
...
...
@@ -558,7 +559,7 @@
B.AUTHOR, B.PUBLISH, B.PUBLISH_DATE, B.COVER_IMG, B.ORIGIN_NAME, B.BOOK_PRICE, B.ISSN, B.BOOK_NUM, B.SERIAL_NUMBER,
IF(ISNULL(BF.BOOK_FUND_ID),0,1) IS_FUND_SUPPORT, A.TEMPLET_ID, A.BOOK_ADVISER_ID, CONCAT('BK',A.BOOK_ID) uniqueNumber,
G.update_time LAST_MODIFIED_DATE, G.create_time CREATED_DATE, G.id BOOK_GROUP_ID, G.group_qrcode_url groupQrcodeUrl,
G.group_qrcode_name groupQrcodeName, G.dep_label_id depLabelId, G.join_group_type
G.group_qrcode_name groupQrcodeName, G.dep_label_id depLabelId, G.join_group_type
, G.book_group_cipher
FROM
book_group G
LEFT JOIN BOOK_ADVISER A ON G.BOOK_ID = A.BOOK_ID AND G.CHANNEL_ID = A.CHANNEL_ID AND G.CREATE_USER = A.ADVISER_ID
...
...
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