mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-20 02:08:15 +08:00
19 lines
190 B
Java
19 lines
190 B
Java
package com.wild.common.enums;
|
|
|
|
/**
|
|
* 操作状态
|
|
*
|
|
* @author wild
|
|
*/
|
|
public enum BusinessStatus {
|
|
/**
|
|
* 成功
|
|
*/
|
|
SUCCESS,
|
|
|
|
/**
|
|
* 失败
|
|
*/
|
|
FAIL,
|
|
}
|