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
3155297d
Commit
3155297d
authored
Feb 15, 2020
by
章春雨
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature-1002359' into 'master'
群发记录合并 See merge request rays/pcloud-book!414
parents
df9416c6
3bd89cad
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletions
+10
-1
SelfPushBizImpl.java
...n/java/com/pcloud/book/push/biz/impl/SelfPushBizImpl.java
+2
-0
SelfPushRecordDTO.java
...main/java/com/pcloud/book/push/dto/SelfPushRecordDTO.java
+6
-0
SelfPushItemMapper.xml
...ook/src/main/resources/mapper/push/SelfPushItemMapper.xml
+2
-1
No files found.
pcloud-service-book/src/main/java/com/pcloud/book/push/biz/impl/SelfPushBizImpl.java
View file @
3155297d
...
...
@@ -481,6 +481,8 @@ public class SelfPushBizImpl implements SelfPushBiz {
}
else
{
dto
.
setRealSendTime
(
DateUtils
.
formatDate
(
dto
.
getSendTime
(),
"yyyy-MM-dd HH:mm:ss"
));
}
List
<
SelfPushItem
>
selfPushItemList
=
selfPushItemDao
.
getByPushId
(
dto
.
getPushId
());
dto
.
setSelfPushItemList
(
selfPushItemList
);
}
if
(
null
==
pageBeanNew
||
ListUtils
.
isEmpty
(
pageBeanNew
.
getRecordList
()))
{
...
...
pcloud-service-book/src/main/java/com/pcloud/book/push/dto/SelfPushRecordDTO.java
View file @
3155297d
package
com
.
pcloud
.
book
.
push
.
dto
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.pcloud.book.push.entity.SelfPushItem
;
import
com.pcloud.common.dto.BaseDto
;
import
java.util.Date
;
import
java.util.List
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
...
...
@@ -111,6 +113,10 @@ public class SelfPushRecordDTO extends BaseDto{
@ApiModelProperty
(
"发送时间拼接"
)
private
String
realSendTime
;
@ApiModelProperty
(
"发送内容列表"
)
private
List
<
SelfPushItem
>
selfPushItemList
;
}
pcloud-service-book/src/main/resources/mapper/push/SelfPushItemMapper.xml
View file @
3155297d
...
...
@@ -112,7 +112,7 @@
i.product_url productUrl,
i.push_status pushStatus,
i.create_time createTime,
i.send_time
sendTime,
min(i.send_time)
sendTime,
p.send_all sendAll,
p.create_user createUser,
p.start_time startTime,
...
...
@@ -139,6 +139,7 @@
AND p.create_user = #{partyId}
</otherwise>
</choose>
group by push_id
ORDER BY
i.create_time DESC, i.id DESC
</select>
...
...
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