46d8dd1e019df71d1a0718cafb34a338afaaca17.svn-base 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package cn.com.goldenwater.dcproj.constValue;
  2. /**
  3. * Created by jinshui on 2020/5/1.
  4. */
  5. public enum BisInspIrrEnum {
  6. TOWNSDSU("1","townsdsu","乡镇交流"),WELL("2","well","机井"),WAS("3","was","堰闸"),
  7. PIT("4","pit","水窖、水池等小型蓄水设施"),POND("5","pond","塘坝"),PUST("6","pust","泵站"),
  8. MICRO("7","micro","微灌"),SPRAY("8","spray","喷灌"),PIPE("9","pipe","管道"),
  9. CHAN("10","chan","渠道"),WTUSR("11","wtusr","用水户");
  10. private String key;
  11. private String value;
  12. private String desc;
  13. BisInspIrrEnum(String key, String value, String desc) {
  14. this.key = key;
  15. this.value = value;
  16. this.desc = desc;
  17. }
  18. public String getDesc() {
  19. return desc;
  20. }
  21. public void setDesc(String desc) {
  22. this.desc = desc;
  23. }
  24. public String getKey() {
  25. return key;
  26. }
  27. public void setKey(String key) {
  28. this.key = key;
  29. }
  30. public String getValue() {
  31. return value;
  32. }
  33. public void setValue(String value) {
  34. this.value = value;
  35. }
  36. }