32 lines
409 B
Java
32 lines
409 B
Java
package com.zhgd.xmgl.enums;
|
|
|
|
public interface BaseEnum {
|
|
/**
|
|
* 获取值
|
|
*
|
|
* @return
|
|
*/
|
|
Integer getValue();
|
|
|
|
/**
|
|
* 设置值
|
|
*
|
|
* @param value
|
|
*/
|
|
void setValue(Integer value);
|
|
|
|
/**
|
|
* 获取描述
|
|
*
|
|
* @return
|
|
*/
|
|
String getDesc();
|
|
|
|
/**
|
|
* 设置描述
|
|
*
|
|
* @param desc
|
|
*/
|
|
void setDesc(String desc);
|
|
}
|