public ResponseInfoModel Getcateinfobyid(int id)
        {
            ResponseInfoModel json = new ResponseInfoModel()
            {
                Success = 1, Result = new object()
            };

            try
            {
                var outputList = _articleCategoryService.FrontlistById(id);
                json.Result = new ListInfo()
                {
                    List = outputList
                };
            }
            catch (Exception e)
            {
                DisposeUserFriendlyException(e, ref json, "api/category/getcateinfobyid", LocalizationConst.QueryFail);
            }
            return(json);
        }