/// <summary>
        /// 信息反馈分类列表
        /// </summary>
        /// <returns></returns>
        public ActionResult FeedBackTypeList()
        {
            FeedBackTypeListModel model = new FeedBackTypeListModel
            {
                FeedBackTypeList = FeedBack.GetFeedBackTypeList()
            };

            SiteUtils.SetAdminRefererCookie(Url.Action("FeedBackTypeList"));
            return(View(model));
        }