feiyu02
2024-08-15 196bb14112448857a885e32dc4149e308e00b01a
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;
    }
}