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