update 更改模块名称
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.jero.modules.compare.enums;
|
||||
|
||||
public enum AssessConsistencyEnum {
|
||||
|
||||
SAME("一致"),
|
||||
DIFFERENT("差异");
|
||||
|
||||
private String value;
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
AssessConsistencyEnum(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user