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.
25 lines
411 B
25 lines
411 B
1 month ago
|
package com.zc.business.enums;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public enum KafkEnum {
|
||
|
//气象数据
|
||
|
weather("weatherData"),
|
||
|
// 扫码报警
|
||
|
scanAlarm("scanCodeData"),
|
||
|
//设备状态
|
||
|
deviceStatus("deviceState"),
|
||
|
// 视频AI
|
||
|
videoAI("eventAi");
|
||
|
private final String value;
|
||
|
|
||
|
KafkEnum(String value) {
|
||
|
this.value = value;
|
||
|
}
|
||
|
|
||
|
public String value() {
|
||
|
return this.value;
|
||
|
}
|
||
|
}
|