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