package com.yanzuoguang.redis; import com.yanzuoguang.redis.vo.PlanLevelType; /** * 用于确定任务所属的级别 * * @author 颜佐光 */ public interface PlanLevel { /** * 获取任务程序级别 * * @return 应用程序级别 */ PlanLevelType getLevel(); }