export interface WaterQualityIndicator { name: string; key: string; pkey: string; fixed: number; sort: number; group: string; groupSort: string; description: string; children: any[]; } export const WATER_QUALITY_INDICATORS: WaterQualityIndicator[] = [ { "name": "水温", "key": "wtmp", "pkey": "", "fixed": 0, "sort": 0, "group": "", "groupSort": "", "description": "℃", "children": [] }, { "name": "PH", "key": "ph", "pkey": "", "fixed": 0, "sort": 1, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "溶解氧", "key": "dox", "pkey": "", "fixed": 0, "sort": 2, "group": "", "groupSort": "", "description": "mg/L", "children": [] }, { "name": "高锰酸盐指数", "key": "codmn", "pkey": "", "fixed": 0, "sort": 3, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "化学需氧量", "key": "codcr", "pkey": "", "fixed": 0, "sort": 4, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "五日生化需氧量BODS", "key": "bod5", "pkey": "", "fixed": 0, "sort": 5, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "氨氮", "key": "nh3n", "pkey": "", "fixed": 0, "sort": 6, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "总磷", "key": "tp", "pkey": "", "fixed": 0, "sort": 7, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "总氮", "key": "tn", "pkey": "", "fixed": 0, "sort": 8, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "铜", "key": "cu", "pkey": "", "fixed": 0, "sort": 9, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "锌", "key": "zn", "pkey": "", "fixed": 0, "sort": 10, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "氟化物", "key": "f", "pkey": "", "fixed": 0, "sort": 11, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "硒", "key": "se", "pkey": "", "fixed": 0, "sort": 12, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "砷", "key": "ars", "pkey": "", "fixed": 0, "sort": 13, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "汞", "key": "hg", "pkey": "", "fixed": 0, "sort": 14, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "镉", "key": "cd", "pkey": "", "fixed": 0, "sort": 15, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "铬(六价)", "key": "cr6", "pkey": "", "fixed": 0, "sort": 16, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "铅", "key": "pb", "pkey": "", "fixed": 0, "sort": 17, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "氰化物", "key": "cn", "pkey": "", "fixed": 0, "sort": 18, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "挥发酚", "key": "vlph", "pkey": "", "fixed": 0, "sort": 19, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "石油类", "key": "oil", "pkey": "", "fixed": 0, "sort": 20, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "阴离子表面活性剂", "key": "las", "pkey": "", "fixed": 0, "sort": 21, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "硫化物", "key": "s2", "pkey": "", "fixed": 0, "sort": 22, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "粪大肠菌群", "key": "fcg", "pkey": "", "fixed": 0, "sort": 23, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "氯化物", "key": "cl", "pkey": "", "fixed": 0, "sort": 24, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "硫酸盐", "key": "so4", "pkey": "", "fixed": 0, "sort": 25, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "硝酸盐氮", "key": "no3", "pkey": "", "fixed": 0, "sort": 26, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "总硬度", "key": "thrd", "pkey": "", "fixed": 0, "sort": 27, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "电导率", "key": "cond", "pkey": "", "fixed": 0, "sort": 28, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "铁", "key": "fe", "pkey": "", "fixed": 0, "sort": 29, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "锰", "key": "mn", "pkey": "", "fixed": 0, "sort": 30, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "铝", "key": "al", "pkey": "", "fixed": 0, "sort": 31, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "叶绿素a", "key": "chla", "pkey": "", "fixed": 0, "sort": 32, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "透明度", "key": "clarity", "pkey": "", "fixed": 0, "sort": 33, "group": "", "groupSort": "", "description": "", "children": [] }, { "name": "浊度", "key": "tu", "pkey": "", "fixed": 0, "sort": 34, "group": "", "groupSort": "", "description": "", "children": [] } ];