Files
qingcheng-houduan/src/main/java/com/greenorange/promotion/annotation/BaseEnum.java

11 lines
272 B
Java

package com.greenorange.promotion.annotation;
/**
* 所有待校验的枚举都应实现此接口,
* 并通过 getValue() 返回其对应的校验字符串。
*/
public interface BaseEnum {
/** 返回该枚举常量对应的校验值 */
String getValue();
}