32 lines
409 B
Java
Raw Normal View History

2023-10-18 10:10:11 +08:00
package com.zhgd.xmgl.enums;
public interface BaseEnum {
2024-07-01 17:38:31 +08:00
/**
* 获取值
*
* @return
*/
Integer getValue();
2023-10-18 10:10:11 +08:00
2024-07-01 17:38:31 +08:00
/**
* 设置值
*
* @param value
*/
void setValue(Integer value);
/**
* 获取描述
*
* @return
*/
String getDesc();
/**
* 设置描述
*
* @param desc
*/
void setDesc(String desc);
2023-10-18 10:10:11 +08:00
}