2025-08-01 17:19:23 +08:00

15 lines
210 B
Java

package com.czlis.common.annotation;
import java.lang.annotation.*;
/**
* 异步任务注解
*/
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Async {
}