public IActionResult GetListByDocTypeId(int pageIndex, int rowCount, string docTypeID)
        {
            /*判断是否合法*/
            if (ModelState.IsValid)
            {
                try
                {
                    if (pageIndex > 0 && rowCount > 0)
                    {
                        var docTypeList = DocTypeConfig.GetListByDocTypeId(pageIndex, rowCount, out int _totalCount, out int _pageCount, docTypeID);
                        return(null == docTypeList
                            ? Ok(new { result = false, tips = ResponseMessageTips.MSG_DOCTYPE_INFO_NO_FOUND })
                            : Ok(new
                        {
                            result = true,
                            tips = ResponseMessageTips.MSG_PROCESS_SUCCESS,
                            data = new { totalCount = _totalCount, pageCount = _pageCount, info = docTypeList }
                        }));
                    }
                }
                catch (Exception e)
                {
                    return(Ok(new { result = false, tips = ResponseMessageTips.MSG_PROCESS_EXCEPTION + e.Message.ToString() }));
                }
            }

            return(Ok(new { result = false, tips = ResponseMessageTips.MSG_PROCESS_DATA_FORMAT_ERROR }));
        }