package com.yanzuoguang.redis.def; import com.yanzuoguang.redis.PlanLevel; import com.yanzuoguang.redis.vo.PlanLevelType; /** * 默认Application应用程序级别 * * @author 颜佐光 */ public class PlanLevelDefault implements PlanLevel { @Override public PlanLevelType getLevel() { return PlanLevelType.Application; } }