Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
haoban3.0
haoban-manage3.0
Commits
794df178
Commit
794df178
authored
Nov 10, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
/
parent
418e36cb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
QywxSendService.java
...om/gic/haoban/manage/service/service/QywxSendService.java
+1
-1
QywxSendServiceImpl.java
...oban/manage/service/service/impl/QywxSendServiceImpl.java
+3
-1
MemberUnionidRelatedApiServiceImpl.java
.../service/out/impl/MemberUnionidRelatedApiServiceImpl.java
+1
-1
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/QywxSendService.java
View file @
794df178
...
@@ -16,7 +16,7 @@ public interface QywxSendService {
...
@@ -16,7 +16,7 @@ public interface QywxSendService {
/**
/**
* 素材-分享
* 素材-分享
*/
*/
public
ServiceResponse
<
String
>
sendMessage
(
String
wxEnterpriseId
,
String
staffId
,
List
<
String
>
extendUserList
,
public
ServiceResponse
<
String
>
sendMessage
Share
(
String
wxEnterpriseId
,
String
staffId
,
List
<
String
>
extendUserList
,
List
<
ContentMaterialDTO
>
imageList
,
String
message
);
List
<
ContentMaterialDTO
>
imageList
,
String
message
);
/**
/**
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/QywxSendServiceImpl.java
View file @
794df178
...
@@ -80,7 +80,8 @@ public class QywxSendServiceImpl implements QywxSendService {
...
@@ -80,7 +80,8 @@ public class QywxSendServiceImpl implements QywxSendService {
return
this
.
send
(
wxEnterpriseId
,
staffId
,
extendUserList
,
materialIdList
,
null
,
1
);
return
this
.
send
(
wxEnterpriseId
,
staffId
,
extendUserList
,
materialIdList
,
null
,
1
);
}
}
public
ServiceResponse
<
String
>
sendMessage
(
String
wxEnterpriseId
,
String
staffId
,
List
<
String
>
extendUserList
,
@Autowired
public
ServiceResponse
<
String
>
sendMessageShare
(
String
wxEnterpriseId
,
String
staffId
,
List
<
String
>
extendUserList
,
List
<
ContentMaterialDTO
>
imageList
,
String
message
)
{
List
<
ContentMaterialDTO
>
imageList
,
String
message
)
{
List
<
String
>
materialIdList
=
this
.
getImageMediaId
(
wxEnterpriseId
,
imageList
,
1
);
List
<
String
>
materialIdList
=
this
.
getImageMediaId
(
wxEnterpriseId
,
imageList
,
1
);
return
this
.
send
(
wxEnterpriseId
,
staffId
,
extendUserList
,
materialIdList
,
message
,
2
);
return
this
.
send
(
wxEnterpriseId
,
staffId
,
extendUserList
,
materialIdList
,
message
,
2
);
...
@@ -145,6 +146,7 @@ public class QywxSendServiceImpl implements QywxSendService {
...
@@ -145,6 +146,7 @@ public class QywxSendServiceImpl implements QywxSendService {
}
}
// 分享朋友圈
// 分享朋友圈
@Autowired
public
ServiceResponse
<
String
>
share
(
String
wxEnterpriseId
,
List
<
String
>
clerkIdList
,
String
message
,
public
ServiceResponse
<
String
>
share
(
String
wxEnterpriseId
,
List
<
String
>
clerkIdList
,
String
message
,
List
<
ContentMaterialDTO
>
imageList
)
{
List
<
ContentMaterialDTO
>
imageList
)
{
WxEnterpriseQwDTO
qwDTO
=
this
.
wxEnterpriseService
.
getQwInfo
(
wxEnterpriseId
);
WxEnterpriseQwDTO
qwDTO
=
this
.
wxEnterpriseService
.
getQwInfo
(
wxEnterpriseId
);
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/MemberUnionidRelatedApiServiceImpl.java
View file @
794df178
...
@@ -1237,7 +1237,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
...
@@ -1237,7 +1237,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
@Override
@Override
public
JSONResponse
sendMessageShare
(
String
wxEnterpriseId
,
String
staffId
,
List
<
String
>
extendUserList
,
String
message
,
public
JSONResponse
sendMessageShare
(
String
wxEnterpriseId
,
String
staffId
,
List
<
String
>
extendUserList
,
String
message
,
List
<
ContentMaterialDTO
>
imgList
)
{
List
<
ContentMaterialDTO
>
imgList
)
{
com
.
gic
.
api
.
base
.
commons
.
ServiceResponse
<
String
>
resp
=
this
.
qywxSendService
.
sendMessage
(
wxEnterpriseId
,
staffId
,
extendUserList
,
imgList
,
message
)
;
com
.
gic
.
api
.
base
.
commons
.
ServiceResponse
<
String
>
resp
=
this
.
qywxSendService
.
sendMessage
Share
(
wxEnterpriseId
,
staffId
,
extendUserList
,
imgList
,
message
)
;
return
this
.
retJson
(
resp
)
;
return
this
.
retJson
(
resp
)
;
}
}
...
...
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