feiyu02
2025-09-30 6904763f0e74d9a9fa4dbc39f635d2aee39416c6
src/main/kotlin/cn/flightfeather/supervision/domain/entity/DeviceInfo.java
@@ -54,6 +54,12 @@
    private String diSupplier;
    /**
     * 是否在线
     */
    @Column(name = "DI_Online")
    private Boolean diOnline;
    /**
     * @return DI_GUID
     */
    public String getDiGuid() {
@@ -266,4 +272,22 @@
    public void setDiSupplier(String diSupplier) {
        this.diSupplier = diSupplier == null ? null : diSupplier.trim();
    }
    /**
     * 获取是否在线
     *
     * @return DI_Online - 是否在线
     */
    public Boolean getDiOnline() {
        return diOnline;
    }
    /**
     * 设置是否在线
     *
     * @param diOnline 是否在线
     */
    public void setDiOnline(Boolean diOnline) {
        this.diOnline = diOnline;
    }
}