15 lines
210 B
Java
Raw Normal View History

2025-08-01 17:19:23 +08:00
package com.czlis.common.annotation;
import java.lang.annotation.*;
/**
* 异步任务注解
*/
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Async {
}