hxb
2022-11-22 b3513b1713bb979d0a69c5a8c4ddcd038f184e6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.mm.android.deviceaddmodule.device_wifi;
 
/**
 * 设备管理常量类
 */
 
public class DeviceConstant {
 
    /**
     * Intent跳转的key常量或者一些常量key值
     */
    public interface IntentKey {
        String DEVICE_CURRENT_WIFI_INFO = "DEVICE_CURRENT_WIFI_INFO";
        String DEVICE_WIFI_CONFIG_INFO = "DEVICE_WIFI_CONFIG_INFO";
        String DHDEVICE_INFO = "DHDEVICE_INFO";
        String DHDEVICE_UNBIND = "DHDEVICE_UNBIND";
        String DHDEVICE_NEW_NAME = "DHDEVICE_NEW_NAME";
 
    }
 
    /**
     * Intent跳转请求码返回码常量
     */
    public interface IntentCode {
        int DEVICE_SETTING_WIFI_OPERATE = 208;
        int DEVICE_SETTING_WIFI_LIST = 209;
    }
 
}