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
68ba009b
Commit
68ba009b
authored
Sep 14, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
保费到期提醒2
parent
68cda857
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
95 additions
and
0 deletions
+95
-0
yd-csf-service/src/main/java/com/yd/csf/service/model/RenewalRemindBatch.java
+95
-0
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/model/RenewalRemindBatch.java
0 → 100644
View file @
68ba009b
package
com
.
yd
.
csf
.
service
.
model
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.time.LocalDate
;
import
java.time.LocalDateTime
;
/**
* 保单续期提醒发送批次表
*
* @TableName renewal_remind_batch
*/
@TableName
(
value
=
"renewal_remind_batch"
)
@Data
public
class
RenewalRemindBatch
implements
Serializable
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
AUTO
)
private
Long
id
;
/**
* 批次业务唯一ID
*/
private
String
batchBizId
;
/**
* 执行月(yyyy-MM)
*/
private
String
bizMonth
;
/**
* 本次提醒窗口起(M+1月1号)
*/
private
LocalDate
windowStart
;
/**
* 本次提醒窗口止(M+2月月末)
*/
private
LocalDate
windowEnd
;
/**
* 清单保单条数
*/
private
Integer
policyCount
;
/**
* 因数据异常跳过的保单条数
*/
private
Integer
skippedCount
;
/**
* 实际收件人邮箱(逗号分隔快照)
*/
private
String
recipients
;
/**
* 附件文件名
*/
private
String
fileName
;
/**
* 发送状态:SUCCESS-成功 FAIL-失败 EMPTY-无到期保单
*/
private
String
status
;
/**
* 失败原因摘要
*/
private
String
errorMsg
;
/**
* 发送时间
*/
private
LocalDateTime
sendTime
;
/**
* 创建时间
*/
private
LocalDateTime
createTime
;
/**
* 更新时间
*/
private
LocalDateTime
updateTime
;
@TableField
(
exist
=
false
)
private
static
final
long
serialVersionUID
=
1L
;
}
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