|
|
|
@ -102,6 +102,9 @@ public class TerminalExcel {
|
|
|
|
|
@ColumnWidth(16)
|
|
|
|
|
@ExcelProperty(value = "夜视415")
|
|
|
|
|
private String night;
|
|
|
|
|
@ColumnWidth(16)
|
|
|
|
|
@ExcelProperty(value = "固件版本")
|
|
|
|
|
private String firmware;
|
|
|
|
|
|
|
|
|
|
public static TerminalExcel from(View_Dy_Line_Tower_Terminals term) {
|
|
|
|
|
TerminalExcel item = new TerminalExcel();
|
|
|
|
@ -145,6 +148,7 @@ public class TerminalExcel {
|
|
|
|
|
item.setAiVersion(String.valueOf(map.get("aiVersion") == null ? "" : map.get("aiVersion")));
|
|
|
|
|
item.setMcu(String.valueOf(map.get("mcu") == null ? "" : map.get("mcu")));
|
|
|
|
|
item.setNight(String.valueOf(map.get("night415") == null ? "" : map.get("night415")));
|
|
|
|
|
item.setFirmware(String.valueOf(map.get("firmware") == null ? "" : map.get("firmware")));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return item;
|
|
|
|
|