完成了Web端课程模块

This commit is contained in:
2025-06-24 09:18:01 +08:00
parent 746ac2c6bd
commit 7ca23bc987
63 changed files with 1297 additions and 478 deletions

View File

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