Files
ruoyi-java/ruoyi-system/src/main/java/com/ruoyi/jarvis/enums/IEnum.java
雷欧(林平凡) 58cb1ef742 1
2025-08-14 11:43:39 +08:00

15 lines
204 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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();
}