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

love.keeping.starter.web.enums.BaseEnum Maven / Gradle / Ivy

The newest version!
package love.keeping.starter.web.enums;

import java.io.Serializable;

/**
 * Enum基类
 *
 * @param 
 * @author Keeping
 */
public interface BaseEnum extends Serializable {

  /**
   * 获取枚举值
   *
   * @return
   */
  T getCode();

  /**
   * 获取描述
   *
   * @return
   */
  String getDesc();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy