first commit

This commit is contained in:
starrySky
2024-03-20 09:28:04 +08:00
commit 989f0210f2
286 changed files with 25129 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.starry.common.result;
/**
* @author admin
*/
public interface IBaseEnum {
/**
* 获取枚举值
*
*/
int getCode();
/**
* 获取枚举描述
*
*/
String getMessage();
}