public JsonResult GetCustomRoleListByKey(string key, int page, int limit)
        {
            int count   = 0;
            var orgList = service.GetCustomRoleListByKey(key, page, limit, out count, false);

            return(Json(new { data = orgList, count = count, code = 0, msg = "获取自定义角色成功", }, JsonRequestBehavior.AllowGet));
        }