| 123456789101112131415161718192021222324252627282930 |
- package cn.com.goldenwater.dcproj.constValue;
- public enum PlanEnum {
- PLAN_CHECK("1","待审核"),PLAN_FANKUI("2","待反馈"),PLAN_SEND("3","已下发");
- private String key;
- private String desc;
- PlanEnum(String key,String desc){
- this.key=key;
- this.desc=desc;
- }
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public String getDesc() {
- return desc;
- }
- public void setDesc(String desc) {
- this.desc = desc;
- }
- }
|