From 6e7080142051ab9503eae29bf2a6d6437a6d554c Mon Sep 17 00:00:00 2001 From: panlei <2799247126@qq.com> Date: 星期二, 19 十一月 2019 14:08:30 +0800 Subject: [PATCH] --- --- cache/cache.go | 31 +++++++++++++++++-------------- 1 files changed, 17 insertions(+), 14 deletions(-) diff --git a/cache/cache.go b/cache/cache.go index 754e1fe..271e75f 100644 --- a/cache/cache.go +++ b/cache/cache.go @@ -144,14 +144,16 @@ if flag { var dicss map[string][]Dic b, _ := json.Marshal(dics) - if err := json.Unmarshal(b, &dicss) ; err == nil { + if err := json.Unmarshal(b, &dicss); err == nil { for key, dics1 := range dicss { - for _,dic := range dics1 { - cMap.Set(PREFIX_DIC+key+dic.value, dic) + for _, dic := range dics1 { + logger.Debug("瀛楀吀缂撳瓨鍒濆鍖�", PREFIX_DIC + key + dic.Value, dic) + cMap.Set(PREFIX_DIC + key + dic.Value, dic) } } } } + logger.Info("鍙栧瓧鍏哥紦瀛橈細", GetDic(PREFIX_DIC + "nCarColor1")) } func initCameraTaskRules() { @@ -227,16 +229,17 @@ return sdk, errors.New("sdk not found") } } + // 鑾峰彇瀛楀吀鍊� -func GetDic(key string) (value string) { - obj, b := cMap.Get(PREFIX_SDK + key) +func GetDic(key string) (name string) { + obj, b := cMap.Get("DIC_nCarColor2") + logger.Info("鍙栧瓧鍏稿�硷細",obj.(Dic)) if b { - return obj.(Dic).value + return obj.(Dic).Name } else { return "" } } - func initSoData() { var api dbapi.SoApi @@ -258,11 +261,11 @@ } type Dic struct { - Id string - value string - Name string - Type string - Description string - Sort int - Parent_id string + Id string `json:"id"` + Value string `json:"value"` + Name string `json:"name"` + Type string `json:"type"` + Description string `json:"description"` + Sort int `json:"sort"` + Parent_id string `json:"parent_id"` } -- Gitblit v1.8.0