You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
810 B
36 lines
810 B
package com.zc.business.constant;
|
|
|
|
/**
|
|
* 设备-功能id常量
|
|
* @author wangjiabao
|
|
*/
|
|
public class DeviceFunctionIdConstants {
|
|
|
|
/**
|
|
* 行车诱导
|
|
*/
|
|
public static final String DRIVING_GUIDANCE = "51";
|
|
/**
|
|
* 摄像机
|
|
*/
|
|
public static final String CAMERA = "51";
|
|
/**
|
|
* 可变信息标志 11 功能码
|
|
*/
|
|
public static final String VARIABLE_INFORMATION_FLAG_11 = "11";
|
|
|
|
/**
|
|
* 可变信息标志 13 功能码
|
|
*/
|
|
public static final String VARIABLE_INFORMATION_FLAG_13 = "13";
|
|
|
|
/**
|
|
* 可变信息标志 1B 功能码
|
|
*/
|
|
public static final String VARIABLE_INFORMATION_FLAG_1B = "1B";
|
|
|
|
/**
|
|
* 激光疲劳唤醒 SETTM 功能码
|
|
*/
|
|
public static final String VARIABLE_INFORMATION_FLAG_SETTM = "SETTM";
|
|
}
|
|
|