All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.vonce.sql.define.SqlEnum Maven / Gradle / Ivy

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