mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-19 17:56:41 +08:00
19 lines
192 B
Java
19 lines
192 B
Java
package com.ruoyi.common.enums;
|
|
|
|
/**
|
|
* 操作状态
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public enum BusinessStatus {
|
|
/**
|
|
* 成功
|
|
*/
|
|
SUCCESS,
|
|
|
|
/**
|
|
* 失败
|
|
*/
|
|
FAIL,
|
|
}
|