Authored by wangnan

fix bug

... ... @@ -400,7 +400,7 @@ public class ShopsServiceImpl extends BaseService implements IShopsService, Appl
shopDataMap.put("shop_logo", shopsInfo.get("shopLogo") == null ? "" : shopsInfo.get("shopLogo"));
shopDataMap.put("shop_domain", shopsInfo.get("shopDomain") == null ? "" : shopsInfo.get("shopDomain"));
shopDataMap.put("shop_type", shopsInfo.get("shopsType") == null ? "" : shopsInfo.get("shopsType"));
shopDataMap.put("decorator_template_type", map.get("decoratorTemplateType") == null ? "" : map.get("decoratorTemplateType"));
shopDataMap.put("decorator_template_type", shopsInfo.get("decoratorTemplateType") == null ? "" : shopsInfo.get("decoratorTemplateType"));
}
map.put("info", shopDataMap);
dataMapMap.put(lt.getKeyAsString(), map);
... ...