cdccd4614bceb4140a11278a1728c8fa3d8853b9.svn-base 557 B

123456789101112131415161718192021222324252627282930
  1. package cn.com.goldenwater.dcproj.constValue;
  2. public enum PlanEnum {
  3. PLAN_CHECK("1","待审核"),PLAN_FANKUI("2","待反馈"),PLAN_SEND("3","已下发");
  4. private String key;
  5. private String desc;
  6. PlanEnum(String key,String desc){
  7. this.key=key;
  8. this.desc=desc;
  9. }
  10. public String getKey() {
  11. return key;
  12. }
  13. public void setKey(String key) {
  14. this.key = key;
  15. }
  16. public String getDesc() {
  17. return desc;
  18. }
  19. public void setDesc(String desc) {
  20. this.desc = desc;
  21. }
  22. }