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
3333947e
Commit
3333947e
authored
Jan 21, 2025
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
画布
parent
ac13efc6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
GroupChatPlanController.java
...manage/web/controller/haoban/GroupChatPlanController.java
+7
-0
GroupChatQO.java
...c/main/java/com/gic/haoban/manage/web/qo/GroupChatQO.java
+9
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/haoban/GroupChatPlanController.java
View file @
3333947e
...
@@ -102,6 +102,13 @@ public class GroupChatPlanController {
...
@@ -102,6 +102,13 @@ public class GroupChatPlanController {
qdto
.
setSearchParams
(
qo
.
getChatName
());
qdto
.
setSearchParams
(
qo
.
getChatName
());
qdto
.
setStatus
(
0
);
qdto
.
setStatus
(
0
);
qdto
.
setGicFlag
(
1
);
qdto
.
setGicFlag
(
1
);
if
(
null
!=
qo
.
getOwnLogId
())
{
ServiceResponse
<
GroupChatPlanOwnerLogDTO
>
resp
=
this
.
groupChatPlanApiService
.
getOwnerSendInfo
(
qo
.
getOwnLogId
());
GroupChatPlanOwnerLogDTO
owner
=
resp
.
getResult
();
if
(
null
!=
owner
&&
owner
.
getSendStatus
()==
2
)
{
return
RestResponse
.
successResult
(
new
Page
<>())
;
}
}
ServiceResponse
<
Page
<
GroupChatDTO
>>
page
=
this
.
groupChatApiService
.
listPage
(
qdto
,
qo
);
ServiceResponse
<
Page
<
GroupChatDTO
>>
page
=
this
.
groupChatApiService
.
listPage
(
qdto
,
qo
);
return
RestResponse
.
successResult
(
page
.
getResult
());
return
RestResponse
.
successResult
(
page
.
getResult
());
}
}
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/GroupChatQO.java
View file @
3333947e
...
@@ -13,6 +13,15 @@ public class GroupChatQO extends BasePageInfo implements Serializable {
...
@@ -13,6 +13,15 @@ public class GroupChatQO extends BasePageInfo implements Serializable {
private
String
enterpriseId
;
private
String
enterpriseId
;
private
String
wxEnterpriseId
;
private
String
wxEnterpriseId
;
private
String
staffId
;
private
String
staffId
;
private
Long
ownLogId
;
public
Long
getOwnLogId
()
{
return
ownLogId
;
}
public
void
setOwnLogId
(
Long
ownLogId
)
{
this
.
ownLogId
=
ownLogId
;
}
public
String
getChatName
()
{
public
String
getChatName
()
{
return
chatName
;
return
chatName
;
...
...
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