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