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
08bc47a6
Commit
08bc47a6
authored
Sep 14, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
保费到期提醒3
parent
68ba009b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
yd-csf-service/src/main/java/com/yd/csf/service/enums/RenewalRemindStatusEnum.java
+30
-0
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/enums/RenewalRemindStatusEnum.java
0 → 100644
View file @
08bc47a6
package
com
.
yd
.
csf
.
service
.
enums
;
/**
* 保单续期提醒批次发送状态
*/
public
enum
RenewalRemindStatusEnum
{
SUCCESS
(
"成功"
,
"SUCCESS"
),
FAIL
(
"失败"
,
"FAIL"
),
EMPTY
(
"无到期保单"
,
"EMPTY"
),
;
//字典项标签(名称)
private
String
itemLabel
;
//字典项值
private
String
itemValue
;
RenewalRemindStatusEnum
(
String
itemLabel
,
String
itemValue
)
{
this
.
itemLabel
=
itemLabel
;
this
.
itemValue
=
itemValue
;
}
public
String
getItemLabel
()
{
return
itemLabel
;
}
public
String
getItemValue
()
{
return
itemValue
;
}
}
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