Commit 08bc47a6 by jianan

保费到期提醒3

parent 68ba009b
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment