123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package com.ruoyi.demo.constant;
- public class RedisContant {
- public static String CHANNEL_MAP_AREA = "channel_area"; //保存渠道地图area数据的Hash名
- public static int CHANNEL_MAP_AREA_TIME = 60*8; //渠道地图area数据的超时时间
- public static String CHANNEL_MAP_LIST = "channel_list"; //保存渠道地图list数据的Hash名
- public static int CHANNEL_MAP_LIST_TIME = 60*8; //渠道地图list数据的超时时间
- public static String CHANNEL_MAP_POINT = "channel_point"; //保存渠道地图point数据的Hash名
- public static int CHANNEL_MAP_POINT_TIME = 60*8; //渠道地图point数据的超时时间
- public static String TOPOLOGICAL_STORE_WD_LIST = "topological_store_wd_list";
- public static int TOPOLOGICAL_STORE_WD_LIST_TIME = 60*8;
- public static String TOPOLOGICAL_STORE_WD_CATEGORY = "topological_store_wd_category";
- public static int TOPOLOGICAL_STORE_WD_CATEGORY_TIME = 60*8;
- public static String TOPOLOGICAL_STORE_WD_STORE_HISTOGRAM = "topological_store_wd_store_histogram";
- public static int TOPOLOGICAL_STORE_WD_STORE_HISTOGRAM_TIME = 60*8;
- public static String TOPOLOGICAL_STORE_WD_PER_CAPITA_CONSUMP_HISTOGRAM = "topological_store_wd_pre_capita_consump_histogram";
- public static int TOPOLOGICAL_STORE_WD_PER_CAPITA_CONSUMP_HISTOGRAM_TIME = 60*8;
- public static String TOPOLOGICAL_BUILD_WD_LIST = "topological_build_wd_list";
- public static int TOPOLOGICAL_BUILD_WD_LIST_TIME = 60*8;
- public static String TOPOLOGICAL_BUILD_WD_CATEGORY= "topological_build_wd_category";
- public static int TOPOLOGICAL_BUILD_WD_CATEGORY_TIME = 60*8;
- public static String TOPOLOGICAL_BUILD_WD_BUILDING_HISTOGRAM = "topological_build_wd_building_histogram";
- public static int TOPOLOGICAL_BUILD_WD_BUILDING_HISTOGRAM_TIME = 60*8;
- public static String TOPOLOGICAL_ENTERPRISE_WD_LIST = "topological_enterprise_wd_list";
- public static int TOPOLOGICAL_ENTERPRISE_WD_LIST_TIME = 60*8;
- public static String TOPOLOGICAL_HOUSE_WD_LIST = "topological_house_wd_list";
- public static int TOPOLOGICAL_HOUSE_WD_LIST_TIME = 60*8;
- public static String TOPOLOGICAL_HOUSE_WD_INFO = "topological_house_wd_info";
- public static int TOPOLOGICAL_HOUSE_WD_INFO_TIME = 60*8;
- public static String CHANNEL_ANALYSE_CITYTIER = "channel_analyse_cityiter";
- public static int CHANNEL_ANALYSE_CITYTIER_TIME = 60*8;
- public static String CHANNEL_ANALYSE_TAG_ANLYSE = "channel_analyse_tag_anlyse";
- public static int CHANNEL_ANALYSE_TAG_ANLYSE_TIME = 60*8;
- public static String CHANNEL_ANALYSE_BUSINESS_STATUS_ANALYSE= "channel_analyse_business_status_analyse";
- public static int CHANNEL_ANALYSE_BUSINESS_STATUS_ANALYSE_TIME = 60*8;
- public static String CHANNEL_ANALYSE_PER_CAPITA_CONSUMP_ANALYSE = "channel_analyse_per_capita_consump_analyse";
- public static int CHANNEL_ANALYSE_PER_CAPITA_CONSUMP_ANALYSE_TIME = 60*8;
- public static String CHANNEL_ANALYSE_AROUND_BUILD_ANALYSE= "channel_analyse_around_build_analyse";
- public static int CHANNEL_ANALYSE_AROUND_BUILD_ANALYSE_TIME = 60*8;
- public static String CHANNEL_ANALYSE_OPERATE_TIME_ANALYSE = "channel_analyse_operate_time_analyse";
- public static int CHANNEL_ANALYSE_OPERATE_TIME_ANALYSE_TIME = 60*8;
- public static String TOPOLOGICAL_COMMON_MAP = "topological_common_map";
- public static int TOPOLOGICAL_COMMON_MAP_TIME = 60*8;
- public static String CHANNEL_ANALYSE_BRANDLIST = "channel_analyse_brandList";
- public static int CHANNEL_ANALYSE_BRANDLIST_TIME = 60*8;
- public static String CHANNEL_ANALYSE_CATEGORY = "channel_analyse_category";
- public static int CHANNEL_ANALYSE_CATEGORY_TIME = 60*8;
- public static String CHANNEL_MAP_TAG_STOREAGE = "channel_map_tag_storeage";
- public static int CHANNEL_MAP_TAG_STOREAGE_TIME = 60*8;
- public static String WD_TAG = "wd_tag";
- public static int WD_TAG_TIME = 60*8;
- public static String BRAND_GEOLABEL = "brand_geolabel";
- public static int BRAND_GEOLABEL_TIME = 60*8;
- public static String CITY_TIER_MAP = "cityTierMap";
- public int CITY_TIER_MAP_time = 60*8;
- }
|