package com.subsidy.common.constant; import lombok.Getter; @Getter public class VodConstant { /* 流量 */ public final static String FLUX = "Flux"; /* 带宽 */ public final static String BANDWIDTH = "Bandwidth"; /* 请求数 */ public final static String REQUESTS = "Requests"; /* 请求命中率 */ public final static String HITRATE = "Hitrate"; /* IP访问次数 */ public final static String IP_VISITS = "Ip_visits"; /* 带宽缓存key */ public final static String BANDWIDTH_CACHE_KEY = "CDNStatBandwidthCache"; /* 流量缓存key */ public final static String FLUX_CACHE_KEY = "CDNStatFluxCache"; /* 自定义缓存名称(ehcache.xml中的自定义规则名称) */ public final static String CDN_STAT_DETAILS_CACHE_NAME = "CDNStatDetails"; }