Exemplo n.º 1
0
        /// <summary>
        /// 获取市列表
        /// </summary>
        /// <param name="provinceId"></param>
        /// <returns></returns>
        public static List <T_City> GetCities(int provinceId)
        {
            List <T_City> tempresult = null;

            string key = RedisHelper.GetEasyZyRedisKey(CacheCatalog.Base, "CL_" + provinceId.ToString());

            using (var client = RedisHelper.Instance.GetRedisClient(CacheCatalog.Base.ToString()))
            {
                if (client != null)
                {
                    tempresult = client.Get <List <T_City> >(key);
                    if (tempresult == null)
                    {
                        tempresult = B_Base.GetCities(provinceId);
                        if (tempresult != null && tempresult.Count > 0)
                        {
                            client.Set <List <T_City> >(key, tempresult, ts);
                        }
                    }
                }
            }

            return(tempresult);
        }
Exemplo n.º 2
0
        /// <summary>
        /// 获取学校列表
        /// </summary>
        /// <param name="districtId"></param>
        /// <returns></returns>
        public static List <T_School> GetSchools(int districtId)
        {
            List <T_School> tempresult = null;

            string key = RedisHelper.GetEasyZyRedisKey(CacheCatalog.Base, "SL_" + districtId.ToString());

            using (var client = RedisHelper.Instance.GetRedisClient(CacheCatalog.Base.ToString()))
            {
                if (client != null)
                {
                    tempresult = client.Get <List <T_School> >(key);
                    if (tempresult == null)
                    {
                        tempresult = B_Base.GetSchools(districtId);
                        if (tempresult != null && tempresult.Count > 0)
                        {
                            client.Set <List <T_School> >(key, tempresult, ts);
                        }
                    }
                }
            }

            return(tempresult);
        }
Exemplo n.º 3
0
        /// <summary>
        /// 获取学校
        /// </summary>
        /// <param name="schoolId"></param>
        /// <returns></returns>
        public static T_School GetSchool(int schoolId)
        {
            T_School tempresult = null;

            string key = RedisHelper.GetEasyZyRedisKey(CacheCatalog.Base, "SCH_" + schoolId.ToString());

            using (var client = RedisHelper.Instance.GetRedisClient(CacheCatalog.Base.ToString()))
            {
                if (client != null)
                {
                    tempresult = client.Get <T_School>(key);
                    if (tempresult == null)
                    {
                        tempresult = B_Base.GetSchool(schoolId);
                        if (tempresult != null)
                        {
                            client.Set <T_School>(key, tempresult, ts);
                        }
                    }
                }
            }

            return(tempresult);
        }