package art.kexue.sxwz.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * @author 维哥 * @Description * @create 2025-03-06 1:15 */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Excel { /** * 列标题(默认取字段名) */ String label() default ""; /** * 列排序(值越小越靠前) */ int sort() default 100; }