|
@@ -0,0 +1,32 @@
|
|
|
+package org.jeecg.modules.gatherData.entity;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 区域管理信息表
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2024-09-19
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@Accessors(chain = true)
|
|
|
+public class FpgMiddleTwoData {
|
|
|
+
|
|
|
+ /**formatted_date*/
|
|
|
+ @Excel(name = "时间", width = 15)
|
|
|
+ @ApiModelProperty(value = "时间")
|
|
|
+ private String formattedDate;
|
|
|
+ /**运行电流*/
|
|
|
+ @Excel(name = "运行电流", width = 15)
|
|
|
+ @ApiModelProperty(value = "运行电流")
|
|
|
+ private String currents;
|
|
|
+ /**有功功率*/
|
|
|
+ @Excel(name = "有功功率", width = 15)
|
|
|
+ @ApiModelProperty(value = "有功功率")
|
|
|
+ private BigDecimal activePower;
|
|
|
+}
|