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

com.xxl.job.spring.boot.executor.ExecutorTriggerPeriodEnum Maven / Gradle / Ivy

package com.xxl.job.spring.boot.executor;

/**
 * 任务周期枚举类
 */
public enum ExecutorTriggerPeriodEnum {

    /**
     * 每周: 1
     */
    WEEK("每周"),

    /**
     * 每月: 2
     */
    MONTH("每月"),

    /**
     * 每天: 4
     */
    DAILY("每天");

    private final String desc;

    ExecutorTriggerPeriodEnum(String desc) {
        this.desc = desc;
    }

    @Override
    public String toString() {
        return name() + " -> " + desc;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy