package com.fr.tx.common.consts;

/**
 * 共通画面定义常量
 * @author shijf
 */
public interface FrameConsts {
    /**
     * 心跳检测超时时间
     */
    public long READ_TIME_OUT_LONG = 180;
    
    /**
     * 在线
     */
    public String IS_ONLINE = "1";
    
    /**
     * 离线
     */
    public String IS_OFFLINE = "0";
    
    /**
     * URL_HEADER
     */
    public String URL_HEADER="http://localhost/smartmonitor/index.php/";
    
    /**
     * URL_设备离线报警
     */
    public String URL_OFFLINE=URL_HEADER+"NettyInterface/isOffLine";
    
}
