mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
9 lines
142 B
Java
9 lines
142 B
Java
package com.mybatisflex.test;
|
|
|
|
import com.mybatisflex.annotation.EnumValue;
|
|
|
|
public interface IBaseEnum {
|
|
@EnumValue
|
|
int getCode();
|
|
}
|