28 lines
386 B
Java
28 lines
386 B
Java
package com.cnbm.admin.enums;
|
|
|
|
/**
|
|
* @Author weihongyang
|
|
* @Date 2022/6/10 10:10 AM
|
|
* @Version 1.0
|
|
*/
|
|
public enum OperationStatusEnum {
|
|
/**
|
|
* 失败
|
|
*/
|
|
FAIL(0),
|
|
/**
|
|
* 成功
|
|
*/
|
|
SUCCESS(1);
|
|
|
|
private int value;
|
|
|
|
OperationStatusEnum(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public int value() {
|
|
return this.value;
|
|
}
|
|
}
|