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