package com.gkhy.safePlatform.safeCheck.enums;
|
|
import com.fasterxml.jackson.annotation.JsonValue;
|
|
public enum WorkStatusEnum {
|
|
WORK_STATUS_OPEN((byte)1,"开启"),
|
WORK_STATUS_CLOSE((byte)2,"关闭"),
|
WORK_STATUS_EXPIRE((byte)3,"过期"),
|
WORK_STATUS_DISPATCHING((byte)4,"调度中")
|
;
|
|
private Byte status;
|
|
private String value;
|
|
WorkStatusEnum(Byte status, String value) {
|
this.status = status;
|
this.value = value;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
}
|