|
|
|
@ -223,17 +223,17 @@ public class CommonEnumUtil {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
|
public enum STATUS {
|
|
|
|
|
public enum DATA_STATUS {
|
|
|
|
|
Enable(1, "启用","fa fa-success cell-fa fa-check"), Disable(2, "禁止","fa fa-disabled cell-fa fa-times-circle"), locking(3, "锁定","fa cell-fa fa-lock");
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
private String name;
|
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
STATUS() {
|
|
|
|
|
DATA_STATUS() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
STATUS(int value, String name, String description) {
|
|
|
|
|
DATA_STATUS(int value, String name, String description) {
|
|
|
|
|
this.value = value;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.description = description;
|
|
|
|
|