|
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
import com.fhs.core.trans.anno.Trans;
|
|
|
import com.fhs.core.trans.constant.TransType;
|
|
@@ -57,5 +58,42 @@ public class TerminalPort {
|
|
|
@TableField("farm_id")
|
|
|
private Integer farmId;
|
|
|
|
|
|
+ @TableField("voltage")
|
|
|
+ private String voltage;
|
|
|
+
|
|
|
+ @TableField("electric_current")
|
|
|
+ private String electricCurrent;
|
|
|
+
|
|
|
+ @TableField("temp")
|
|
|
+ private String temp;
|
|
|
+
|
|
|
+ @TableField("leakage_value")
|
|
|
+ private String leakageValue;
|
|
|
+
|
|
|
+ @TableField("active_power")
|
|
|
+ private Integer activePower;
|
|
|
+
|
|
|
+ @TableField("reactive_power")
|
|
|
+ private Integer reactivePower;
|
|
|
+
|
|
|
+ @TableField("apparent_power")
|
|
|
+ private Integer apparentPower;
|
|
|
+
|
|
|
+ @TableField("height_temp_warning")
|
|
|
+ private Integer heightTempWarning;
|
|
|
+
|
|
|
+ @TableField("charging_warning")
|
|
|
+ private Integer chargingWarning;
|
|
|
+
|
|
|
+ @TableField("leakage_warning")
|
|
|
+ private Integer leakageWarning;
|
|
|
+
|
|
|
+ @TableField("update_time")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+ @TableField("status")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
}
|