first commit

This commit is contained in:
2025-06-05 14:59:19 +08:00
commit 95a0a88f73
306 changed files with 38871 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package com.ruoyi.common.enums;
/**
* 操作状态
*
* @author ruoyi
*
*/
public enum BusinessStatus
{
/**
* 成功
*/
SUCCESS,
/**
* 失败
*/
FAIL,
}