package com.hdl.sdk.ttl.HDLDeviceManger.EventBusEvent;
|
|
|
/**
|
* Created by JLChen on 2019/7/24
|
*/
|
public class EventCode {
|
public static final int SUCCESS = 0;
|
public static final int FAILURE_TIMEOUT = -1;//失败超时
|
public static final int FAILURE_DATA_ERROR = -2;//数据错误
|
|
// @IntDef({SUCCESS, FAILURE_TIMEOUT, FAILURE_DATAEMPTY, FAILURE_DATA_ERROR})
|
// @Retention(RetentionPolicy.SOURCE)
|
// public @interface EventCodeID{}
|
|
|
}
|