This commit is contained in:
雷欧(林平凡)
2025-08-14 11:43:39 +08:00
parent 28bb9f29a2
commit 58cb1ef742
6 changed files with 162 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.jarvis.enums;
/**
* @author Leo
* @version 1.0
* @create 2023/12/19 0019 上午 10:33
* @description
*/
public interface IEnum {
Integer getKey();
String getName();
}