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
26a3b9e5
Commit
26a3b9e5
authored
Aug 28, 2020
by
朱亚洁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:[none]合并代码报错
parent
46960aea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
9 deletions
+7
-9
AppletNewsPoolBizImpl.java
...om/pcloud/book/applet/biz/impl/AppletNewsPoolBizImpl.java
+2
-2
AppletThirdResourcesBizImpl.java
...oud/book/applet/biz/impl/AppletThirdResourcesBizImpl.java
+4
-4
BookGroupBiz.java
...src/main/java/com/pcloud/book/group/biz/BookGroupBiz.java
+0
-1
GroupQrcodeBiz.java
...c/main/java/com/pcloud/book/group/biz/GroupQrcodeBiz.java
+1
-2
No files found.
pcloud-service-book/src/main/java/com/pcloud/book/applet/biz/impl/AppletNewsPoolBizImpl.java
View file @
26a3b9e5
...
@@ -117,9 +117,9 @@ public class AppletNewsPoolBizImpl implements AppletNewsPoolBiz {
...
@@ -117,9 +117,9 @@ public class AppletNewsPoolBizImpl implements AppletNewsPoolBiz {
}
}
private
void
addResource
(
String
source
)
{
private
void
addResource
(
String
source
)
{
Boolean
exist
=
appletNewsDao
.
newsSourceExist
(
source
);
Boolean
exist
=
appletNewsDao
.
newsSourceExist
(
source
,
0L
);
if
(!
exist
)
{
if
(!
exist
)
{
appletNewsDao
.
insertSource
(
source
);
appletNewsDao
.
insertSource
(
source
,
0L
);
}
}
return
;
return
;
}
}
...
...
pcloud-service-book/src/main/java/com/pcloud/book/applet/biz/impl/AppletThirdResourcesBizImpl.java
View file @
26a3b9e5
...
@@ -171,9 +171,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz {
...
@@ -171,9 +171,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz {
@Override
@Override
public
void
updateThirdResources
(
AppletThirdResourcesDTO
thirdResourcesDTO
)
{
public
void
updateThirdResources
(
AppletThirdResourcesDTO
thirdResourcesDTO
)
{
AppletThirdResources
thirdResources
=
new
AppletThirdResources
();
AppletThirdResources
thirdResources
=
new
AppletThirdResources
();
Boolean
exist
=
appletNewsDao
.
newsSourceExist
(
thirdResourcesDTO
.
getSource
());
Boolean
exist
=
appletNewsDao
.
newsSourceExist
(
thirdResourcesDTO
.
getSource
()
,
0L
);
if
(!
exist
)
{
if
(!
exist
)
{
appletNewsDao
.
insertSource
(
thirdResourcesDTO
.
getSource
());
appletNewsDao
.
insertSource
(
thirdResourcesDTO
.
getSource
()
,
0L
);
}
}
if
(!
StringUtil
.
isEmpty
(
thirdResourcesDTO
.
getNumber
()))
{
if
(!
StringUtil
.
isEmpty
(
thirdResourcesDTO
.
getNumber
()))
{
...
@@ -198,9 +198,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz {
...
@@ -198,9 +198,9 @@ public class AppletThirdResourcesBizImpl implements AppletThirdResourcesBiz {
public
void
createThirdResources
(
AppletThirdResourcesDTO
thirdResourcesDTO
)
{
public
void
createThirdResources
(
AppletThirdResourcesDTO
thirdResourcesDTO
)
{
AppletThirdResources
thirdResources
=
new
AppletThirdResources
();
AppletThirdResources
thirdResources
=
new
AppletThirdResources
();
Boolean
exist
=
appletNewsDao
.
newsSourceExist
(
thirdResourcesDTO
.
getSource
());
Boolean
exist
=
appletNewsDao
.
newsSourceExist
(
thirdResourcesDTO
.
getSource
()
,
0L
);
if
(!
exist
)
{
if
(!
exist
)
{
appletNewsDao
.
insertSource
(
thirdResourcesDTO
.
getSource
());
appletNewsDao
.
insertSource
(
thirdResourcesDTO
.
getSource
()
,
0L
);
}
}
if
(!
StringUtil
.
isEmpty
(
thirdResourcesDTO
.
getNumber
()))
{
if
(!
StringUtil
.
isEmpty
(
thirdResourcesDTO
.
getNumber
()))
{
...
...
pcloud-service-book/src/main/java/com/pcloud/book/group/biz/BookGroupBiz.java
View file @
26a3b9e5
...
@@ -947,7 +947,6 @@ public interface BookGroupBiz {
...
@@ -947,7 +947,6 @@ public interface BookGroupBiz {
* * @param null
* * @param null
*/
*/
public
Long
getAccountSettingByAdviser
(
Long
adviserId
);
public
Long
getAccountSettingByAdviser
(
Long
adviserId
);
String
getGroupNewsMaterialById
(
Long
bookGroupQrcodeId
,
Long
classifyId
);
/**
/**
* 出版社社群书数量
* 出版社社群书数量
...
...
pcloud-service-book/src/main/java/com/pcloud/book/group/biz/GroupQrcodeBiz.java
View file @
26a3b9e5
...
@@ -251,12 +251,11 @@ public interface GroupQrcodeBiz {
...
@@ -251,12 +251,11 @@ public interface GroupQrcodeBiz {
* @param currentPage
* @param currentPage
* @return
* @return
*/
*/
PageBeanNew
<
AppletGroupManageDTO
>
getLocalGroup
(
Long
wechatUserId
,
Integer
numPerPage
,
Integer
currentPage
);
PageBeanNew
<
AppletGroupManageDTO
>
getLocalGroup
(
Long
wechatUserId
,
Integer
numPerPage
,
Integer
currentPage
,
Long
officialAccountsId
);
Integer
updateGroupMaterial
(
List
<
String
>
groups
);
Integer
updateGroupMaterial
(
List
<
String
>
groups
);
List
<
String
>
migrateMaterial
(
MaterialMigrateDTO
migrateDTO
);
List
<
String
>
migrateMaterial
(
MaterialMigrateDTO
migrateDTO
);
void
syncGroupMaterial
(
Map
<
String
,
Long
>
accountMap
);
void
syncGroupMaterial
(
Map
<
String
,
Long
>
accountMap
);
PageBeanNew
<
AppletGroupManageDTO
>
getLocalGroup
(
Long
wechatUserId
,
Integer
numPerPage
,
Integer
currentPage
,
Long
officialAccountsId
);
}
}
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