unis_sip/src/main/java/com/ruoyi/common/constant/ScheduleConstants.java

40 lines
643 B
Java
Raw Normal View History

2018-07-09 00:44:52 +00:00
package com.ruoyi.common.constant;
/**
*
*
* @author ruoyi
*/
public interface ScheduleConstants
{
/**
* key
*/
public static final String JOB_PARAM_KEY = "JOB_PARAM_KEY";
public enum Status
{
/**
*
*/
NORMAL("0"),
/**
*
*/
PAUSE("1");
private String value;
private Status(String value)
{
this.value = value;
}
public String getValue()
{
return value;
}
}
}