| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package cn.com.goldenwater.dcproj.constValue;
- /**
- * Created by jinshui on 2019/8/27.
- */
- public enum BisInspTypeEnum {
- /**
- * 小水库,人饮,水毁,172重点工程(4,7),地下书,小水闸等
- */
- AA("aa", "4", "工程建设", "004", "A", "水利工程建设与运行"),
- AB("ab", "7", "运行管理", "007", "A", "水利工程建设与运行"),
- AC("ac", "1", "小型水库", "001", "A", "水利工程建设与运行"),
- AD("ad", "6", "水闸", "006", "A", "水利工程建设与运行"),
- AF("af", "3", "水毁工程", "003", "A", "水利工程建设与运行"),
- AZ("az", "36", "大中型水库", "036", "A", "水利工程建设与运行"),
- CB("cb", "12", "取水口", "012", "C", "水资源管理"),
- CC("cc", "5", "地下水", "005", "C", "水资源管理"),
- CD("cd", "13", "重要水源地", "013", "C", "水资源管理"),
- CE("ce", "2", "人饮工程", "002", "C", "水资源管理"),
- CF("cf", "14", "分水及管控", "014", "C", "水资源管理"),
- CG("cg", "15", "节水管理与评价", "015", "C", "水资源管理"),
- CH("ch", "16", "用水单位", "016", "C", "水资源管理"),
- DB("db", "11", "淤地坝", "011", "D", "水土保持"),
- DC("dc", "17", "水保", "017", "D", "水土保持"),
- EA("ea", "18", "河湖四乱", "018", "E", "百日攻坚"),
- EB("eb", "19", "非法采砂", "019", "E", "百日攻坚"),
- EC("ec", "20", "中央环保", "020", "E", "百日攻坚"),
- GA("ga", "9", "特定飞检", "009", "G", "政务监督"),
- GB("gb", "10", "其他填报", "010", "G", "政务监督");
- private String key;
- private String value;
- private String desc;
- private String rlation;
- private String parentCode;
- private String parentName;
- BisInspTypeEnum(String key, String value, String desc, String rlation, String parentCode, String parentName) {
- this.desc = desc;
- this.key = key;
- this.value = value;
- this.rlation = rlation;
- this.parentCode = parentCode;
- this.parentName = parentName;
- }
- public String getRlation() {
- return rlation;
- }
- public void setRlation(String rlation) {
- this.rlation = rlation;
- }
- 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;
- }
- public String getParentCode() {
- return parentCode;
- }
- public void setParentCode(String parentCode) {
- this.parentCode = parentCode;
- }
- public String getParentName() {
- return parentName;
- }
- public void setParentName(String parentName) {
- this.parentName = parentName;
- }
- }
|