eb2f7a2abe481f097a00f5936c2a40b76dc6dead.svn-base 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package cn.com.goldenwater.dcproj.constValue;
  2. /**
  3. * Created by jinshui on 2019/7/17.
  4. */
  5. public enum BisInspObjEnum {
  6. /**
  7. * 综合展示查询
  8. * 水库,人饮行政村,农村饮水工程,水源地,督查县,水毁,172,地下水,水闸,水文站,贫困县,取水口,地表水
  9. */
  10. CWS("cws", "21", "农村饮水工程"),
  11. PSP("psp", "22", "水源地"),
  12. COUNTRY("country", "23", "督查县"),
  13. STBPRP("stbprp", "12", "水文站"),
  14. PKX("pkx", "13", "贫困县"),
  15. WAIN("wain", "14", "取水口"),
  16. SWHS("swhs", "15", "地表水"),
  17. FSC("fsc","9","特定飞检"),
  18. OTHER("other","10","其他检查"),
  19. SD("sd","11","淤地坝"),
  20. WIU("wiu","16","取用水户"),
  21. KEYSWHS("keyswhs","17","重点水源地"),
  22. WINT("wint","18","水资源取水口"),
  23. CITY("city","30","行政区划督查"),
  24. SVWT("svwt","31","节水管理与评价督查"),
  25. WUNT("wunt","32","用水单位"),
  26. PRD("prd","33","水保工作核实"),
  27. JSFL("jsfl","34","河湖四乱核实"),
  28. JSWA("jswa","35","非法采砂核实"),
  29. IRR_VILL("irrVill","281","最后一公里行政村"),
  30. IRR_WTUSR("irrWtusr","282","最后一公里用水户"),
  31. IRR_TOWN("irrTown","283","最后一公里乡镇"),
  32. IRR_PRO("irrPro","284","最后一公里工程"),
  33. IRR_CITY("irrCity","285","最后一公里督查对象"),
  34. IRR_BASE("irrBase","286","最后一个公里灌区基本信息"),
  35. CWS2020("villpro", "251", "供水工程"),
  36. CWS2020WATER("villwater", "252", "用水户"),
  37. CWS2020LAW("law", "253", "水价相关政策"),
  38. CWS2021("law", "253", "水价相关政策");
  39. private String key;
  40. private String value;
  41. private String desc;
  42. BisInspObjEnum(String key, String value, String desc) {
  43. this.key = key;
  44. this.value = value;
  45. this.desc = desc;
  46. }
  47. public String getKey() {
  48. return key;
  49. }
  50. public void setKey(String key) {
  51. this.key = key;
  52. }
  53. public String getValue() {
  54. return value;
  55. }
  56. public void setValue(String value) {
  57. this.value = value;
  58. }
  59. public String getDesc() {
  60. return desc;
  61. }
  62. public void setDesc(String desc) {
  63. this.desc = desc;
  64. }
  65. }