eight
2025-04-10 c85110528d1a68c1132c244a9f8f3da4087b41bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cn.lihu.jh.framework.tenant.core.job;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * 多租户 Job 注解
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface TenantJob {
}