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.
22 lines
381 B
Java
22 lines
381 B
Java
package com.supervision.constant;
|
|
|
|
import lombok.Data;
|
|
|
|
public enum JudgeResultEnum {
|
|
|
|
TRUE("1","真实"),
|
|
FALSE("2","虚构"),
|
|
EXIST("3","存在"),
|
|
NOT_EXIST("4","不存在"),
|
|
UNKNOWN("5","未知");
|
|
|
|
private String code;
|
|
private String desc;
|
|
|
|
JudgeResultEnum(String code, String desc) {
|
|
this.code = code;
|
|
this.desc = desc;
|
|
}
|
|
|
|
}
|