/// <summary>
 /// 获取所有权限
 /// </summary>
 /// <returns></returns>
 //[HttpPost]
 public ActionResult GetAuthority()
 {
     try
     {
         return(Json(EmployeeManage.GetAuthority(0), JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(Content(ex.Message));
     }
 }