| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package cn.com.goldenwater.dcproj.constValue;
- /**
- * Created by jinshui on 2020/5/1.
- */
- public enum BisInspIrrEnum {
- TOWNSDSU("1","townsdsu","乡镇交流"),WELL("2","well","机井"),WAS("3","was","堰闸"),
- PIT("4","pit","水窖、水池等小型蓄水设施"),POND("5","pond","塘坝"),PUST("6","pust","泵站"),
- MICRO("7","micro","微灌"),SPRAY("8","spray","喷灌"),PIPE("9","pipe","管道"),
- CHAN("10","chan","渠道"),WTUSR("11","wtusr","用水户");
- private String key;
- private String value;
- private String desc;
- BisInspIrrEnum(String key, String value, String desc) {
- this.key = key;
- this.value = value;
- this.desc = desc;
- }
- public String getDesc() {
- return desc;
- }
- public void setDesc(String desc) {
- 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;
- }
- }
|