cn.vonce.sql.define.SqlEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.define;
import java.io.Serializable;
/**
* 枚举基类
*
* @author Jovi
* @email [email protected]
* @date 2023/6/30 11:27
*/
public interface SqlEnum {
/**
* 枚举类名
*
* @return
*/
default String getName() {
return this.toString();
}
/**
* 代码
*
* @return
*/
T getCode();
/**
* 描述
*
* @return
*/
String getDesc();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy