1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| package com.whyc.dto;
|
| public class PageParamUserDTO {
| public static String getLableEnUs(String key) {
| switch (key) {
| case "vol":
| return "Voltage";
| case "conduct":
| return "Conductance";
| case "conductPercent":
| return "Conductance Percentage";
| case "res":
| return "Resistance";
| case "temp":
| return "Temperature";
| case "link":
| return "Connector Impedance";
| case "monConnRes":
| return "Connector Impedance";
| case "eleLine":
| return "Circuit Topology";
| case "tblData":
| return "Data Excel";
| case "curr":
| return "";
| case "leakVol":
| return "";
| case "dianchigaojing":
| return "";
| case "niBianInfoTab":
| return "";
| case "jggdInfoTab":
| return "";
| case "elePrice":
| return "";
| case "bmsInfo":
| return "";
| }
| return "";
| }
| }
|
|