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.
26 lines
451 B
26 lines
451 B
12 months ago
|
package com.zc.business.enums;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
//事件来源枚举
|
||
|
public enum EventSource {
|
||
|
VIDEO_AI(1, "视频AI");
|
||
|
private final Integer code;
|
||
|
private final String description;
|
||
|
|
||
|
EventSource(Integer code, String description) {
|
||
|
this.code = code;
|
||
|
this.description = description;
|
||
|
}
|
||
|
|
||
|
public Integer getCode()
|
||
|
{
|
||
|
return code;
|
||
|
}
|
||
|
|
||
|
public String getDescription() {
|
||
|
return description;
|
||
|
}
|
||
|
}
|