13 changed files with 158 additions and 31 deletions
@ -0,0 +1,42 @@
|
||||
package org.springblade.common.constant.billLading; |
||||
|
||||
/** |
||||
* 自提任务通知状态 |
||||
*/ |
||||
public enum BillNotificationStatusConstant { |
||||
weitongzhi("未通知", "0"), |
||||
yitongzhi("已通知", "1"); |
||||
|
||||
|
||||
/** |
||||
* 状态 |
||||
*/ |
||||
private String name; |
||||
|
||||
/** |
||||
* 值 |
||||
*/ |
||||
private String value; |
||||
|
||||
|
||||
private BillNotificationStatusConstant(String name, String value) { |
||||
this.name = name; |
||||
this.value = value; |
||||
} |
||||
|
||||
public String getName() { |
||||
return name; |
||||
} |
||||
|
||||
public void setName(String name) { |
||||
this.name = name; |
||||
} |
||||
|
||||
public String getValue() { |
||||
return value; |
||||
} |
||||
|
||||
public void setValue(String value) { |
||||
this.value = value; |
||||
} |
||||
} |
Loading…
Reference in new issue