/// <summary>
 /// 编辑标签
 /// </summary>
 /// <param name="Id"></param>
 /// <param name="title"></param>
 /// <returns></returns>
 public JsonResult EditTag(long Id, string title)
 {
     try
     {
         ShopBranchApplication.UpdateShopBranchTagInfo(Id, title);
         return(this.Json((object)new
         {
             success = true
         }));
     }
     catch (Exception ex)
     {
         return(this.Json((object)new
         {
             success = false,
             msg = ex.Message
         }));
     }
 }
 public JsonResult EditTag(long id, string title)
 {
     ShopBranchApplication.UpdateShopBranchTagInfo(id, title);
     return(Json(new { success = true }));
 }