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.
21 lines
319 B
Java
21 lines
319 B
Java
9 months ago
|
package com.supervision.constant;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
|
||
|
@Getter
|
||
|
public enum DataStatus {
|
||
|
|
||
|
AVAILABLE("1","生效"),
|
||
|
|
||
|
NOT_AVAILABLE("2","失效");
|
||
|
|
||
|
private final String code;
|
||
|
|
||
|
private final String msg;
|
||
|
|
||
|
DataStatus(String code, String msg) {
|
||
|
this.code = code;
|
||
|
this.msg = msg;
|
||
|
}
|
||
|
}
|