You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
457 B
Java
28 lines
457 B
Java
package com.bsd.say.util;
|
|
|
|
/**
|
|
* 本地日志枚举
|
|
* @author yaoyao.zhu
|
|
*/
|
|
public enum LogEnum {
|
|
|
|
BUSSINESS("bussiness"),
|
|
PLATFORM("platform"),
|
|
DB("db"),
|
|
EXCEPTION("exception"),;
|
|
|
|
private String category;
|
|
|
|
LogEnum(String category) {
|
|
this.category = category;
|
|
}
|
|
|
|
public String getCategory() {
|
|
return category;
|
|
}
|
|
|
|
public void setCategory(String category) {
|
|
this.category = category;
|
|
}
|
|
}
|