Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-csf
Commits
0d891056
Commit
0d891056
authored
Sep 14, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
保费到期提醒10
parent
2668783a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
yd-csf-service/src/main/java/com/yd/csf/service/component/RenewalPolicyReportService.java
+2
-1
yd-csf-service/src/main/java/com/yd/csf/service/model/RenewalRemindBatch.java
+9
-4
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/component/RenewalPolicyReportService.java
View file @
0d891056
...
...
@@ -73,7 +73,8 @@ public class RenewalPolicyReportService {
row
.
setSignDate
(
p
.
getSignDate
());
row
.
setIssueDate
(
p
.
getIssueDate
());
row
.
setCoolingOffEndDate
(
p
.
getCoolingOffEndDate
());
row
.
setDueDate
(
java
.
sql
.
Date
.
valueOf
(
item
.
getDueDate
()));
row
.
setDueDate
(
java
.
util
.
Date
.
from
(
item
.
getDueDate
()
.
atStartOfDay
(
java
.
time
.
ZoneId
.
systemDefault
()).
toInstant
()));
row
.
setIssueNumber
(
Objects
.
toString
(
p
.
getIssueNumber
(),
null
));
row
.
setPaymentFrequency
(
p
.
getPaymentFrequency
());
row
.
setIsPrepay
(
p
.
getIsPrepay
());
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/RenewalRemindBatch.java
View file @
0d891056
package
com
.
yd
.
csf
.
service
.
model
;
import
com.baomidou.mybatisplus.annotation.FieldStrategy
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
...
...
@@ -56,13 +57,15 @@ public class RenewalRemindBatch implements Serializable {
private
Integer
skippedCount
;
/**
* 实际收件人邮箱(逗号分隔快照)
* 实际收件人邮箱(逗号分隔快照)
;状态切换时允许置空
*/
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
recipients
;
/**
* 附件文件名
* 附件文件名
;状态切换时允许置空
*/
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
fileName
;
/**
...
...
@@ -71,13 +74,15 @@ public class RenewalRemindBatch implements Serializable {
private
String
status
;
/**
* 失败原因摘要
* 失败原因摘要
;重跑成功后允许置空
*/
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
errorMsg
;
/**
* 发送时间
* 发送时间
;FAIL 时允许置空
*/
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
LocalDateTime
sendTime
;
/**
...
...
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