All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fishlikewater.schedule.client.annotion.Schedule Maven / Gradle / Ivy

The newest version!
package com.fishlikewater.schedule.client.annotion;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.TYPE;

/**
 * @author zhangx
 * @version V1.0
 * @mail [email protected]
 * @ClassName Schedule
 * @Description 任务调度逻辑实现类
 * @date 2018年12月24日 20:43
 **/
@Target({TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Schedule {

    String value() default "";

    String desc() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy