|
@@ -0,0 +1,37 @@
|
|
|
+package com.jpsoft.picc.modules.common.constant;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 投保单状态
|
|
|
+ */
|
|
|
+public enum PolicyStatus {
|
|
|
+ Draft("草稿",10),
|
|
|
+ PendingTrial("待初审",20),
|
|
|
+ PendingRetrial("待复审",30),
|
|
|
+ PendingPay("待缴费",40),
|
|
|
+ PendingMakePolicy("待制单",50),
|
|
|
+ PendingOutPolicy("待出单",60),
|
|
|
+ SendOutPolicy("已出单",70);
|
|
|
+
|
|
|
+ private int value;
|
|
|
+ private String text;
|
|
|
+
|
|
|
+ PolicyStatus(String text, int value){
|
|
|
+ this.value = value;
|
|
|
+ this.text = text;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getValue() {
|
|
|
+ return value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setValue(int value) {
|
|
|
+ this.value = value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getText() {
|
|
|
+ return text;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setText(String text) {
|
|
|
+ this.text = text;
|
|
|
+ }}
|