|
|
@ -10,32 +10,35 @@ public class ExportDeviceAccumulateDataDTO { |
|
|
@ExcelProperty(value = {"上传时间", "Upload Time", "計測日時"}, converter = TimestampConverter.class) |
|
|
@ExcelProperty(value = {"上传时间", "Upload Time", "計測日時"}, converter = TimestampConverter.class) |
|
|
private Long uploadTimestamp; |
|
|
private Long uploadTimestamp; |
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty({"设施名", "Facility Name", "施設名"}) |
|
|
|
|
|
private String buildingName; |
|
|
|
|
|
|
|
|
@ExcelProperty({"监视点名称", "Monitoring Point Name", "監視点名称"}) |
|
|
@ExcelProperty({"监视点名称", "Monitoring Point Name", "監視点名称"}) |
|
|
private String monitoringPointName; |
|
|
private String monitoringPointName; |
|
|
|
|
|
|
|
|
@ExcelProperty({"楼层名称", "Floor Name", "フロア"}) |
|
|
@ExcelProperty({"楼层名称", "Floor", "フロア"}) |
|
|
private String floorName; |
|
|
private String floorName; |
|
|
|
|
|
|
|
|
@ExcelProperty({"监控点分类名称", "Monitoring Point Category Name", "分類"}) |
|
|
@ExcelProperty({"监控点分类名称", "Category", "分類"}) |
|
|
private String monitoringPointCategoryName; |
|
|
private String monitoringPointCategoryName; |
|
|
|
|
|
|
|
|
@ExcelProperty({"网关信息名称", "Gateway Info Name", "接続先情報"}) |
|
|
// @ExcelProperty({"网关信息名称", "Gateway Info Name", "接続先情報"})
|
|
|
private String gatewayInfoName; |
|
|
// private String gatewayInfoName;
|
|
|
|
|
|
|
|
|
@ExcelProperty({"数据提供方名称", "Data Provider Name", "データソース"}) |
|
|
// @ExcelProperty({"数据提供方名称", "Data Provider Name", "データソース"})
|
|
|
private String dataProviderName; |
|
|
// private String dataProviderName;
|
|
|
|
|
|
|
|
|
@ExcelProperty({"设备状态", "Device Status", "デバイス状態"}) |
|
|
@ExcelProperty({"设备状态", "Device Status", "ステータスフラグ"}) |
|
|
private String status111; |
|
|
private String status111; |
|
|
|
|
|
|
|
|
@ExcelProperty({"累积值", "Cumulative Value", "計測値"}) |
|
|
@ExcelProperty({"积算值", "Accumulated Value", "積算値"}) |
|
|
private String cumulativeValue; |
|
|
private String cumulativeValue; |
|
|
|
|
|
|
|
|
@ExcelProperty({"昨日值", "Yesterday's Value", "前日値"}) |
|
|
@ExcelProperty({"前日比(%)", "Previous Day Ratio(%)", "前日比(%)"}) |
|
|
private String yesterdayValue; |
|
|
private String yesterdayRatio; |
|
|
|
|
|
|
|
|
@ExcelProperty({"去年值", "Last Year's Value", "前年値"}) |
|
|
@ExcelProperty({"前年比(%)", "Previous Year Ratio(%)", "前年比(%)"}) |
|
|
private String lastYearValue; |
|
|
private String lastYearRatio; |
|
|
|
|
|
|
|
|
@ExcelProperty({"单位", "Unit", "単位"}) |
|
|
@ExcelProperty({"单位", "Unit", "単位"}) |
|
|
private String unit; |
|
|
private String unit; |
|
|
|