chenzx
2024-12-04 e25af6bdd67188d3049a3e4fca8f3c4e43281b27
czx20241204接口更新
11个文件已修改
9个文件已添加
362 ■■■■■ 已修改文件
.vs/PolicyControl/FileContentIndex/1fa74ead-8fdf-4dd7-92f8-b597ea884b0b.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/2134a282-4710-4964-ae66-66627cd4a12a.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/aa648f55-224c-4193-ad0f-d2d0c6eca158.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/c267da26-6d61-4857-9ef5-4cd91585f61a.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/e93ed239-976f-4897-89e2-a30c55b39ced.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/v17/fileList.bin 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.BLL/ArticleDataBLL.cs 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.BLL/CompanyInfoBLL.cs 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.BLL/GasolineBlend.BLL.csproj 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.DAL/ArticleDataDAL.cs 82 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.DAL/ChatHistoryDAL.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.DAL/CompanyInfoDAL.cs 64 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.DAL/GasolineBlend.DAL.csproj 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.Entity/CompanyInfo.cs 72 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.Entity/GasolineBlend.Entity.csproj 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/.vs/GasolineBlend.csproj.dtbcache.json 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/Controllers/ArticleDataController.cs 46 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/Controllers/ChatHistoryController.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/Controllers/CompanyInfoController.cs 41 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/GasolineBlend.csproj 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/1fa74ead-8fdf-4dd7-92f8-b597ea884b0b.vsidx
Binary files differ
.vs/PolicyControl/FileContentIndex/2134a282-4710-4964-ae66-66627cd4a12a.vsidx
Binary files differ
.vs/PolicyControl/FileContentIndex/aa648f55-224c-4193-ad0f-d2d0c6eca158.vsidx
Binary files differ
.vs/PolicyControl/FileContentIndex/c267da26-6d61-4857-9ef5-4cd91585f61a.vsidx
Binary files differ
.vs/PolicyControl/FileContentIndex/e93ed239-976f-4897-89e2-a30c55b39ced.vsidx
Binary files differ
.vs/PolicyControl/v17/fileList.bin
Binary files differ
GasolineBlend.BLL/ArticleDataBLL.cs
@@ -40,6 +40,20 @@
            List<ArticleDataPage> totalData = _acc.GetArticleCollectionList(Platform, ArticleType, Keyword, PageNumber, PageSize, UserId);
            return new PaginatedResult<ArticleDataPage>(totalData, totalCount, totalPage);
        }
        /// <summary>
        /// 获取关键词列表数据
        /// </summary>
        /// <returns></returns>
        public PaginatedResult<ArticleDataPage> GetArticleContentList(string Platform, string ArticleType, string Scope, string Keyword, int PageNumber, int PageSize, int UserId)
        {
            QccSearchInfoBLL qccSearchInfoBll = new QccSearchInfoBLL();
            int totalCount = _acc.GetArticleContentCount(Platform, ArticleType, Scope, Keyword);
            int totalPage = (int)Math.Ceiling((double)totalCount / PageSize);
            List<ArticleDataPage> totalData = _acc.GetArticleContentList(Platform, ArticleType, Scope, Keyword, PageNumber, PageSize, UserId);
            return new PaginatedResult<ArticleDataPage>(totalData, totalCount, totalPage);
        }
        public PaginatedResult<ArticleDataPage> GetDeclarationtimeList(string Keyword, int Time, int PageNumber, int PageSize, string Region)
        {
GasolineBlend.BLL/CompanyInfoBLL.cs
New file
@@ -0,0 +1,30 @@
using GasolineBlend.DAL;
using GasolineBlend.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static GasolineBlend.Entity.CompanyInfo;
namespace GasolineBlend.BLL
{
    public class CompanyInfoBLL
    {
        private CompanyInfoDAL _acc = new CompanyInfoDAL();
        /// <summary>
        /// 获取用益信托网记录数据
        /// </summary>
        /// <returns></returns>
        public PaginatedResult<CompanyInfo> GetCompanyInfoList(string KeywordProduct, string KeywordIndustry, int PageNum, int PageSize)
        {
            int totalCount = _acc.GetCompanyInfoListCount(KeywordProduct, KeywordIndustry);
            int totalPage = (int)Math.Ceiling((double)totalCount / PageSize);
            List<CompanyInfo> totalData = _acc.GetCompanyInfoList(KeywordProduct, KeywordIndustry, PageNum, PageSize);
            return new PaginatedResult<CompanyInfo>(totalData, totalCount, totalPage);
        }
    }
}
GasolineBlend.BLL/GasolineBlend.BLL.csproj
@@ -127,7 +127,7 @@
  <ItemGroup>
    <Compile Include="AccountBLL.cs" />
    <Compile Include="AccountGroupBLL.cs" />
    <Compile Include="EnterpriseInformationBLL.cs" />
    <Compile Include="CompanyInfoBLL.cs" />
    <Compile Include="DefaultCompanyBLL.cs" />
    <Compile Include="PushDataBLL.cs" />
    <Compile Include="OrderDataBLL.cs" />
GasolineBlend.DAL/ArticleDataDAL.cs
@@ -93,6 +93,11 @@
                return Count;
            }
        }
        public int GetDeclarationtimeCount(string Keyword, int Time, string Region)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
@@ -154,8 +159,85 @@
                return connection.Query<ArticleDataPage>(sql).ToList();
            }
        }
        public List<ArticleDataPage> GetArticleContentList(string Platform, string ArticleType, string Scope, string Keyword, int PageNumber, int PageSize, int UserId)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT a.id,a.platformulr,a.platform,a.articletype,a.articletitle,a.articleurl,a.entertime,a.pubtime,CASE WHEN s.articleid IS NOT NULL THEN 1 ELSE 0 END AS favoriteflag FROM articledata a LEFT JOIN collectarticle s  ON a.id = s.articleid AND s.userid = '{UserId}'  WHERE 1=1 ";
                if (!string.IsNullOrEmpty(Platform) && Platform.Contains("全部"))
                {
                    string updatedPlatform = Platform.Replace("全部", "");
                    sql += $" AND (a.region = '{updatedPlatform}' or a.region='全国') ";
                }
                if (!string.IsNullOrEmpty(Platform) && Platform.Contains("国家部委") && string.IsNullOrEmpty(Scope))
                {
                    sql += $" AND a.region ='全国' ";
                }
                else if (!string.IsNullOrEmpty(Platform) && string.IsNullOrEmpty(Scope) && !Platform.Contains("全部"))
                {
                    sql += $" AND a.platform like'%{Platform}%' ";
                }
                else if (!string.IsNullOrEmpty(Scope))
                {
                    sql += $" AND a.platform like'%{Scope}%' ";
                }
                if (!string.IsNullOrEmpty(ArticleType))
                {
                    sql += $" AND a.articletype = '{ArticleType}' ";
                }
                if (!string.IsNullOrEmpty(Keyword))
                {
                    sql += $" AND( a.articletitle like '%{Keyword.Trim()}%' or a.keyword ='%{Keyword.Trim()}%' ) ";
                }
                int offset = (PageNumber - 1) * PageSize;
                sql += $" AND a.showflag=1 ORDER BY a.pubtime DESC  LIMIT {PageSize} OFFSET {offset}";
                return connection.Query<ArticleDataPage>(sql).ToList();
            }
        }
        public int GetArticleContentCount(string Platform, string ArticleType, string Scope, string Keyword)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT  COUNT(*)  from articledata WHERE 1=1 ";
                if (!string.IsNullOrEmpty(Platform) && Platform.Contains("全部"))
                {
                    string updatedPlatform = Platform.Replace("全部", "");
                    sql += $" AND (region = '{updatedPlatform}' or region='全国') ";
                }
                if (!string.IsNullOrEmpty(Platform) && Platform.Contains("国家部委") && string.IsNullOrEmpty(Scope))
                {
                    sql += $" AND region='全国' ";
                }
                else if (!string.IsNullOrEmpty(Platform) && string.IsNullOrEmpty(Scope) && !Platform.Contains("全部"))
                {
                    sql += $" and platform like'%{Platform}%' ";
                }
                else if (!string.IsNullOrEmpty(Scope))
                {
                    sql += $" and platform like'%{Scope}%' ";
                }
                if (!string.IsNullOrEmpty(ArticleType))
                {
                    sql += $" and articletype = '{ArticleType}' ";
                }
                if (!string.IsNullOrEmpty(Keyword))
                {
                    sql += $" and ( articletitle like '%{Keyword.Trim()}%' or keyword ='%{Keyword.Trim()}%' ) ";
                }
                sql += $"  and showflag=1 ORDER BY pubtime DESC ";
                int Count = connection.Query<int>(sql).FirstOrDefault();
                return Count;
            }
        }
        public List<ArticleDataPage> GetArticleCollectionList(string Platform, string ArticleType, string Keyword, int PageNumber, int PageSize, int UserId)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
GasolineBlend.DAL/ChatHistoryDAL.cs
@@ -52,7 +52,7 @@
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT content,role FROM  chathistorydata WHERE userid =1 AND agentid = 1 ORDER BY id DESC LIMIT 6";
                var sql = $"SELECT content,role FROM  chathistorydata WHERE userid ='{UserId}' AND agentid = '{AgentId}' ORDER BY id DESC LIMIT 6";
                return connection.Query<ChatHistoryDataPage>(sql).ToList();
            }
        }
GasolineBlend.DAL/CompanyInfoDAL.cs
New file
@@ -0,0 +1,64 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing.Printing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CommonHelper;
using Dapper;
using GasolineBlend.Entity;
using Google.Protobuf.WellKnownTypes;
using Microsoft.Office.Interop.Excel;
using MySql.Data.MySqlClient;
namespace GasolineBlend.DAL
{
    public class CompanyInfoDAL : BaseMySQLDAL
    {
        public List<CompanyInfo> GetCompanyInfoList(string KeywordProduct, string KeywordIndustry, int PageNum, int PageSize)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT id,companyname,companyadd,registeredcapital,performance,establishmentdate,databaseindustry,nationalstandardindustry,mainproducts,modificationtime from companyinfo WHERE 1=1 ";
                if (!string.IsNullOrEmpty(KeywordProduct)) {
                    sql += $" and mainproducts like '%{KeywordProduct.Trim()}%' ";
                }
                if (!string.IsNullOrEmpty(KeywordIndustry))
                {
                    KeywordIndustry = KeywordIndustry.Replace("行业", "");
                    sql += $" and (databaseindustry like '%{KeywordIndustry.Trim()}%' or nationalstandardindustry like '%{KeywordIndustry.Trim()}%')  ";
                }
                int offset = (PageNum - 1) * PageSize;
                sql += $" ORDER BY modificationtime DESC  LIMIT {PageSize} OFFSET {offset}";
                return connection.Query<CompanyInfo>(sql).ToList();
            }
        }
        public int GetCompanyInfoListCount(string KeywordProduct, string KeywordIndustry)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT COUNT(*) FROM companyinfo where 1=1 ";
                if (!string.IsNullOrEmpty(KeywordProduct))
                {
                    sql += $" and mainproducts like '%{KeywordProduct.Trim()}%' ";
                }
                if (!string.IsNullOrEmpty(KeywordIndustry))
                {
                    KeywordIndustry = KeywordIndustry.Replace("行业", "");
                    sql += $" and (databaseindustry like '%{KeywordIndustry.Trim()}%' or nationalstandardindustry like '%{KeywordIndustry.Trim()}%')  ";
                }
                sql += $"  ORDER BY modificationtime DESC ";
                int Count = connection.Query<int>(sql).FirstOrDefault();
                return Count;
            }
        }
    }
}
GasolineBlend.DAL/GasolineBlend.DAL.csproj
@@ -85,7 +85,7 @@
  <ItemGroup>
    <Compile Include="AccountDAL.cs" />
    <Compile Include="AccountGroupDAL.cs" />
    <Compile Include="EnterpriseInformationDAL.cs" />
    <Compile Include="CompanyInfoDAL.cs" />
    <Compile Include="DefaultCompanyDAL.cs" />
    <Compile Include="PushDataDAL.cs" />
    <Compile Include="OrderDataDAL.cs" />
GasolineBlend.Entity/CompanyInfo.cs
New file
@@ -0,0 +1,72 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GasolineBlend.Entity
{
    public class CompanyInfo
    {
        /// <summary>
        /// 序号
        /// </summary>
        public int Id { get; set; }
        /// <summary>
        /// 公司名称
        /// </summary>
        public string CompanyName { get; set; }
        /// <summary>
        /// 公司地址
        /// </summary>
        public string CompanyAdd { get; set; }
        /// <summary>
        /// 注册资本
        /// </summary>
        public string RegisteredCapital { get; set; }
        /// <summary>
        /// 成立时间
        /// </summary>
        public DateTime EstablishmentDate { get; set; }
        /// <summary>
        ///业绩
        /// </summary>
        public string Performance { get; set; }
        /// <summary>
        ///数库行业
        /// </summary>
        ///
        public string DatabaseInDustry { get; set; }
        /// <summary>
        ///国家行业
        /// </summary>
        ///
        public string NationalStandardIndustry { get; set; }
        /// <summary>
        ///主要产品
        /// </summary>
        ///
        public string MainproDucts { get; set; }
        /// <summary>
        ///修改时间
        /// </summary>
        public DateTime ModificationTime { get; set; }
        public string Description { get; set; }
        public int Count { get; set; }
        public class PaginatedResult<T>
        {
            public List<T> Data { get; set; }
            public int TotalCount { get; set; }
            public int TotalPages { get; set; }
            public PaginatedResult(List<T> totalData, int totalCount, int totalPages)
            {
                Data = totalData;
                TotalCount = totalCount;
                TotalPages = totalPages;
            }
        }
    }
}
GasolineBlend.Entity/GasolineBlend.Entity.csproj
@@ -47,7 +47,7 @@
    <Compile Include="Account.cs" />
    <Compile Include="AccountGroup.cs" />
    <Compile Include="AccountRecAge.cs" />
    <Compile Include="EnterpriseInformation.cs" />
    <Compile Include="CompanyInfo.cs" />
    <Compile Include="DefaultCompany.cs" />
    <Compile Include="PushDataPage.cs" />
    <Compile Include="OrderDataPage.cs" />
GasolineBlend/.vs/GasolineBlend.csproj.dtbcache.json
@@ -1 +1 @@
{"RootPath":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend","ProjectFileName":"GasolineBlend.csproj","Configuration":"Debug|x64","FrameworkPath":"","Sources":[{"SourceFile":"App_Start\\BundleConfig.cs"},{"SourceFile":"App_Start\\FilterConfig.cs"},{"SourceFile":"App_Start\\RouteConfig.cs"},{"SourceFile":"App_Start\\WebExceptionFilterAttribute.cs"},{"SourceFile":"Controllers\\OrderDataController.cs"},{"SourceFile":"Controllers\\UserPackageDataController.cs"},{"SourceFile":"Controllers\\SubsidizedCompaniesController.cs"},{"SourceFile":"Controllers\\ChatHistoryController.cs"},{"SourceFile":"Controllers\\CollectArticleController.cs"},{"SourceFile":"Controllers\\StarAgentController.cs"},{"SourceFile":"Controllers\\AgentDataController.cs"},{"SourceFile":"Controllers\\AreaDataController.cs"},{"SourceFile":"Controllers\\SubsidyDataController.cs"},{"SourceFile":"Controllers\\ArticleDataController.cs"},{"SourceFile":"Controllers\\AssessAnalysisController.cs"},{"SourceFile":"Controllers\\AssessCapitalController.cs"},{"SourceFile":"Controllers\\AssessCapitalOperateController.cs"},{"SourceFile":"Controllers\\AssessDebtController.cs"},{"SourceFile":"Controllers\\AssessDebtOutController.cs"},{"SourceFile":"Controllers\\AssessDepreciationController.cs"},{"SourceFile":"Controllers\\AssessFileController.cs"},{"SourceFile":"Controllers\\AssessGageController.cs"},{"SourceFile":"Controllers\\AssessGageTableController.cs"},{"SourceFile":"Controllers\\AssessTableController.cs"},{"SourceFile":"Controllers\\AssessTaxAddedController.cs"},{"SourceFile":"Controllers\\AssessTaxController.cs"},{"SourceFile":"Controllers\\AssessTaxIncomeController.cs"},{"SourceFile":"Controllers\\AssureInnerController.cs"},{"SourceFile":"Controllers\\AssureOutTableController.cs"},{"SourceFile":"Controllers\\AssurePledgeController.cs"},{"SourceFile":"Controllers\\AssurePledgeInnerController.cs"},{"SourceFile":"Controllers\\BankYjController.cs"},{"SourceFile":"Controllers\\BaseController.cs"},{"SourceFile":"Controllers\\CashFlowController.cs"},{"SourceFile":"Controllers\\CashFlowExController.cs"},{"SourceFile":"Controllers\\ChinaStockController.cs"},{"SourceFile":"Controllers\\CityInvestmentController.cs"},{"SourceFile":"Controllers\\ComCheckTableController.cs"},{"SourceFile":"Controllers\\ComFileAffController.cs"},{"SourceFile":"Controllers\\ComItemTableController.cs"},{"SourceFile":"Controllers\\ComRegionMonitorController.cs"},{"SourceFile":"Controllers\\ComMonitorController.cs"},{"SourceFile":"Controllers\\ComRemindEmailController.cs"},{"SourceFile":"Controllers\\ComRemindRuleController.cs"},{"SourceFile":"Controllers\\ComShareOneController.cs"},{"SourceFile":"Controllers\\ComSiteSupController.cs"},{"SourceFile":"Controllers\\ComSpotCheckController.cs"},{"SourceFile":"Controllers\\DebtCategoryController.cs"},{"SourceFile":"Controllers\\AssessGeneralInfoController.cs"},{"SourceFile":"Controllers\\DepartmentDataController.cs"},{"SourceFile":"Controllers\\EvaRecallPayParaExController.cs"},{"SourceFile":"Controllers\\EvaReportExController.cs"},{"SourceFile":"Controllers\\EvaSubAPRExController.cs"},{"SourceFile":"Controllers\\EvaSubAttributionExController.cs"},{"SourceFile":"Controllers\\EvaSubjectExController.cs"},{"SourceFile":"Controllers\\FinBalanceSheetController.cs"},{"SourceFile":"Controllers\\FinBalanceSheetExController.cs"},{"SourceFile":"Controllers\\FinCapitalAndDebtExController.cs"},{"SourceFile":"Controllers\\FinCapitalInfoController.cs"},{"SourceFile":"Controllers\\FinCashFlowTableController.cs"},{"SourceFile":"Controllers\\FinCashFlowTableExController.cs"},{"SourceFile":"Controllers\\FinCashFlowTableSupController.cs"},{"SourceFile":"Controllers\\FinConfigController.cs"},{"SourceFile":"Controllers\\FinConfigExController.cs"},{"SourceFile":"Controllers\\FinCourseTitleExController.cs"},{"SourceFile":"Controllers\\FinCustomAffController.cs"},{"SourceFile":"Controllers\\FinCustomAffExController.cs"},{"SourceFile":"Controllers\\FinDebtInfoController.cs"},{"SourceFile":"Controllers\\FinFileAffController.cs"},{"SourceFile":"Controllers\\FinFileAffExController.cs"},{"SourceFile":"Controllers\\FinGeneralAffController.cs"},{"SourceFile":"Controllers\\FinGeneralAffExController.cs"},{"SourceFile":"Controllers\\FinOwnerChangeEquityController.cs"},{"SourceFile":"Controllers\\FinProfilePanelController.cs"},{"SourceFile":"Controllers\\FinProfitTableController.cs"},{"SourceFile":"Controllers\\FinProfitTableExController.cs"},{"SourceFile":"Controllers\\FinSpecialAffController.cs"},{"SourceFile":"Controllers\\FinSpecialAffExController.cs"},{"SourceFile":"Controllers\\FRMReportInfoController.cs"},{"SourceFile":"Controllers\\HomeController.cs"},{"SourceFile":"Controllers\\InfoCashFlowController.cs"},{"SourceFile":"Controllers\\InfoInputOutputController.cs"},{"SourceFile":"Controllers\\InfoProductGroupController.cs"},{"SourceFile":"Controllers\\InfoProductMapController.cs"},{"SourceFile":"Controllers\\LawAbnormalController.cs"},{"SourceFile":"Controllers\\LawSuitController.cs"},{"SourceFile":"Controllers\\MkCAPRevController.cs"},{"SourceFile":"Controllers\\MkCompanyTableController.cs"},{"SourceFile":"Controllers\\MkDownloadZipController.cs"},{"SourceFile":"Controllers\\MkFinanceLeaseController.cs"},{"SourceFile":"Controllers\\MkImportRecordsController.cs"},{"SourceFile":"Controllers\\MkPledgeRevController.cs"},{"SourceFile":"Controllers\\MkReceivablesPledgeController.cs"},{"SourceFile":"Controllers\\MkTrustTableController.cs"},{"SourceFile":"Controllers\\MkYongYi_Product_InfoController.cs"},{"SourceFile":"Controllers\\MonPlanTableController.cs"},{"SourceFile":"Controllers\\MonRecycleTableController.cs"},{"SourceFile":"Controllers\\MonRemindEmailController.cs"},{"SourceFile":"Controllers\\MonRemindRuleController.cs"},{"SourceFile":"Controllers\\MonShareOneController.cs"},{"SourceFile":"Controllers\\NeeqController.cs"},{"SourceFile":"Controllers\\PageRouteController.cs"},{"SourceFile":"Controllers\\PayController.cs"},{"SourceFile":"Controllers\\PjrzController.cs"},{"SourceFile":"Controllers\\ProjectController.cs"},{"SourceFile":"Controllers\\ProjectExController.cs"},{"SourceFile":"Controllers\\ProjStateChangeController.cs"},{"SourceFile":"Controllers\\ProjStateChangeExController.cs"},{"SourceFile":"Controllers\\ProjStateFlowController.cs"},{"SourceFile":"Controllers\\PropertyInfoController.cs"},{"SourceFile":"Controllers\\PropertyInfoExController.cs"},{"SourceFile":"Controllers\\QxbController.cs"},{"SourceFile":"Controllers\\ReportFlaseDataController.cs"},{"SourceFile":"Controllers\\RmcCapitalAndDebtController.cs"},{"SourceFile":"Controllers\\RmcCashFlowSupYTController.cs"},{"SourceFile":"Controllers\\RmcCashFlowTableController.cs"},{"SourceFile":"Controllers\\RmcCashFlowTableSupController.cs"},{"SourceFile":"Controllers\\RmcCashFlowYTController.cs"},{"SourceFile":"Controllers\\RmcCustomAffController.cs"},{"SourceFile":"Controllers\\RmcFileAffController.cs"},{"SourceFile":"Controllers\\RmcFileController.cs"},{"SourceFile":"Controllers\\RmcFinancialDataController.cs"},{"SourceFile":"Controllers\\RmcFinancialRiskController.cs"},{"SourceFile":"Controllers\\RmcFinancialTargetController.cs"},{"SourceFile":"Controllers\\RmcGeneralAffController.cs"},{"SourceFile":"Controllers\\RmcLibraryController.cs"},{"SourceFile":"Controllers\\RmcManagementReportController.cs"},{"SourceFile":"Controllers\\RmcOwnerChangeEquityController.cs"},{"SourceFile":"Controllers\\RmcPowerController.cs"},{"SourceFile":"Controllers\\RmcProfitTableController.cs"},{"SourceFile":"Controllers\\RmcProfitYTController.cs"},{"SourceFile":"Controllers\\RmcQualitySystemController.cs"},{"SourceFile":"Controllers\\RmcSpecialAffController.cs"},{"SourceFile":"Controllers\\RzdzyController.cs"},{"SourceFile":"Controllers\\SearchInfoController.cs"},{"SourceFile":"Controllers\\QiChaChaController.cs"},{"SourceFile":"Controllers\\RateAssetRecoverController.cs"},{"SourceFile":"Controllers\\RateBaseController.cs"},{"SourceFile":"Controllers\\RateCompanyController.cs"},{"SourceFile":"Controllers\\RateGradeController.cs"},{"SourceFile":"Controllers\\RateRiskFactorController.cs"},{"SourceFile":"Controllers\\RatingReportController.cs"},{"SourceFile":"Controllers\\ReportHistoryController.cs"},{"SourceFile":"Controllers\\RightChangePlanController.cs"},{"SourceFile":"Controllers\\RightStockController.cs"},{"SourceFile":"Controllers\\SubjectController.cs"},{"SourceFile":"Controllers\\SubjectExController.cs"},{"SourceFile":"Controllers\\SubjectGroupController.cs"},{"SourceFile":"Controllers\\SubjectGroupExController.cs"},{"SourceFile":"Controllers\\TianYanChaController.cs"},{"SourceFile":"Controllers\\CrawlerMonitorController.cs"},{"SourceFile":"Controllers\\TushareController.cs"},{"SourceFile":"Controllers\\TushareNewsController.cs"},{"SourceFile":"Controllers\\UrbanInvestmentController.cs"},{"SourceFile":"Controllers\\UserController.cs"},{"SourceFile":"Controllers\\VoteController.cs"},{"SourceFile":"Controllers\\VoteExController.cs"},{"SourceFile":"Controllers\\WaterfallInnerController.cs"},{"SourceFile":"Controllers\\WaterfallTableController.cs"},{"SourceFile":"Controllers\\WeChatController.cs"},{"SourceFile":"Filter\\LoginCheckedAttribute.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"Controllers\\OutRateController.cs"},{"SourceFile":"Controllers\\IndustryController.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Controllers\\RecoverPlanController.cs"},{"SourceFile":"obj\\x64\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Antlr.3.4.1.9004\\lib\\Antlr3.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Portable.BouncyCastle.1.8.6\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\CommonHelper\\bin\\Debug\\CommonHelper.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Flurl.4.0.0\\lib\\net461\\Flurl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Flurl.Http.4.0.2\\lib\\net461\\Flurl.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend.BLL\\bin\\Debug\\GasolineBlend.BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend.Entity\\bin\\Debug\\GasolineBlend.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\SharpZipLib.0.86.0\\lib\\20\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\LinqToExcel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.Agent.Intercept.2.0.6\\lib\\net45\\Microsoft.AI.Agent.Intercept.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.DependencyCollector.2.2.0\\lib\\net45\\Microsoft.AI.DependencyCollector.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0\\lib\\net45\\Microsoft.AI.PerfCounterCollector.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0\\lib\\net45\\Microsoft.AI.ServerTelemetryChannel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.Web.2.2.0\\lib\\net45\\Microsoft.AI.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.WindowsServer.2.2.0\\lib\\net45\\Microsoft.AI.WindowsServer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.2.2.0\\lib\\net45\\Microsoft.ApplicationInsights.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.Bcl.AsyncInterfaces.6.0.0\\lib\\net461\\Microsoft.Bcl.AsyncInterfaces.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8\\lib\\net45\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.Web.Infrastructure.1.0.0.0\\lib\\net40\\Microsoft.Web.Infrastructure.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Newtonsoft.Json.13.0.3\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\Remotion.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\Remotion.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\Remotion.Interfaces.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\RiskControl.NewService\\bin\\Debug\\RiskControl.NewService.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\SqlSugar.5.1.4.72\\lib\\SqlSugar.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Buffers.4.5.1\\lib\\net461\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Memory.4.5.4\\lib\\net461\\System.Memory.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.Http.WebRequest.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Numerics.Vectors.4.5.0\\lib\\net46\\System.Numerics.Vectors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Runtime.CompilerServices.Unsafe.6.0.0\\lib\\net461\\System.Runtime.CompilerServices.Unsafe.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Security.Principal.Windows.5.0.0\\lib\\net461\\System.Security.Principal.Windows.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Text.Encodings.Web.6.0.0\\lib\\net461\\System.Text.Encodings.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Text.Json.6.0.4\\lib\\net461\\System.Text.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Threading.Tasks.Extensions.4.5.4\\lib\\net461\\System.Threading.Tasks.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.ValueTuple.4.5.0\\lib\\net461\\System.ValueTuple.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.Helpers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.Mvc.5.2.3\\lib\\net45\\System.Web.Mvc.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.Web.Optimization.1.1.3\\lib\\net40\\System.Web.Optimization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.Razor.3.2.3\\lib\\net45\\System.Web.Razor.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Routing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.WebPages.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.WebPages.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.WebPages.Razor.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\WebGrease.1.5.2\\lib\\WebGrease.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend\\bin\\GasolineBlend.dll","OutputItemRelativePath":"GasolineBlend.dll"},{"OutputItemFullPath":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend\\bin\\GasolineBlend.pdb","OutputItemRelativePath":"GasolineBlend.pdb"}],"CopyToOutputEntries":[]}
{"RootPath":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend","ProjectFileName":"GasolineBlend.csproj","Configuration":"Debug|x64","FrameworkPath":"","Sources":[{"SourceFile":"App_Start\\BundleConfig.cs"},{"SourceFile":"App_Start\\FilterConfig.cs"},{"SourceFile":"App_Start\\RouteConfig.cs"},{"SourceFile":"App_Start\\WebExceptionFilterAttribute.cs"},{"SourceFile":"Controllers\\EnterpriseInformation.cs"},{"SourceFile":"Controllers\\DefaultCompanyController.cs"},{"SourceFile":"Controllers\\PushDataController.cs"},{"SourceFile":"Controllers\\OrderDataController.cs"},{"SourceFile":"Controllers\\UserPackageDataController.cs"},{"SourceFile":"Controllers\\SubsidizedCompaniesController.cs"},{"SourceFile":"Controllers\\ChatHistoryController.cs"},{"SourceFile":"Controllers\\CollectArticleController.cs"},{"SourceFile":"Controllers\\StarAgentController.cs"},{"SourceFile":"Controllers\\AgentDataController.cs"},{"SourceFile":"Controllers\\AreaDataController.cs"},{"SourceFile":"Controllers\\SubsidyDataController.cs"},{"SourceFile":"Controllers\\ArticleDataController.cs"},{"SourceFile":"Controllers\\AssessAnalysisController.cs"},{"SourceFile":"Controllers\\AssessCapitalController.cs"},{"SourceFile":"Controllers\\AssessCapitalOperateController.cs"},{"SourceFile":"Controllers\\AssessDebtController.cs"},{"SourceFile":"Controllers\\AssessDebtOutController.cs"},{"SourceFile":"Controllers\\AssessDepreciationController.cs"},{"SourceFile":"Controllers\\AssessFileController.cs"},{"SourceFile":"Controllers\\AssessGageController.cs"},{"SourceFile":"Controllers\\AssessGageTableController.cs"},{"SourceFile":"Controllers\\AssessTableController.cs"},{"SourceFile":"Controllers\\AssessTaxAddedController.cs"},{"SourceFile":"Controllers\\AssessTaxController.cs"},{"SourceFile":"Controllers\\AssessTaxIncomeController.cs"},{"SourceFile":"Controllers\\AssureInnerController.cs"},{"SourceFile":"Controllers\\AssureOutTableController.cs"},{"SourceFile":"Controllers\\AssurePledgeController.cs"},{"SourceFile":"Controllers\\AssurePledgeInnerController.cs"},{"SourceFile":"Controllers\\BankYjController.cs"},{"SourceFile":"Controllers\\BaseController.cs"},{"SourceFile":"Controllers\\CashFlowController.cs"},{"SourceFile":"Controllers\\CashFlowExController.cs"},{"SourceFile":"Controllers\\ChinaStockController.cs"},{"SourceFile":"Controllers\\CityInvestmentController.cs"},{"SourceFile":"Controllers\\ComCheckTableController.cs"},{"SourceFile":"Controllers\\ComFileAffController.cs"},{"SourceFile":"Controllers\\ComItemTableController.cs"},{"SourceFile":"Controllers\\ComRegionMonitorController.cs"},{"SourceFile":"Controllers\\ComMonitorController.cs"},{"SourceFile":"Controllers\\ComRemindEmailController.cs"},{"SourceFile":"Controllers\\ComRemindRuleController.cs"},{"SourceFile":"Controllers\\ComShareOneController.cs"},{"SourceFile":"Controllers\\ComSiteSupController.cs"},{"SourceFile":"Controllers\\ComSpotCheckController.cs"},{"SourceFile":"Controllers\\DebtCategoryController.cs"},{"SourceFile":"Controllers\\AssessGeneralInfoController.cs"},{"SourceFile":"Controllers\\DepartmentDataController.cs"},{"SourceFile":"Controllers\\EvaRecallPayParaExController.cs"},{"SourceFile":"Controllers\\EvaReportExController.cs"},{"SourceFile":"Controllers\\EvaSubAPRExController.cs"},{"SourceFile":"Controllers\\EvaSubAttributionExController.cs"},{"SourceFile":"Controllers\\EvaSubjectExController.cs"},{"SourceFile":"Controllers\\FinBalanceSheetController.cs"},{"SourceFile":"Controllers\\FinBalanceSheetExController.cs"},{"SourceFile":"Controllers\\FinCapitalAndDebtExController.cs"},{"SourceFile":"Controllers\\FinCapitalInfoController.cs"},{"SourceFile":"Controllers\\FinCashFlowTableController.cs"},{"SourceFile":"Controllers\\FinCashFlowTableExController.cs"},{"SourceFile":"Controllers\\FinCashFlowTableSupController.cs"},{"SourceFile":"Controllers\\FinConfigController.cs"},{"SourceFile":"Controllers\\FinConfigExController.cs"},{"SourceFile":"Controllers\\FinCourseTitleExController.cs"},{"SourceFile":"Controllers\\FinCustomAffController.cs"},{"SourceFile":"Controllers\\FinCustomAffExController.cs"},{"SourceFile":"Controllers\\FinDebtInfoController.cs"},{"SourceFile":"Controllers\\FinFileAffController.cs"},{"SourceFile":"Controllers\\FinFileAffExController.cs"},{"SourceFile":"Controllers\\FinGeneralAffController.cs"},{"SourceFile":"Controllers\\FinGeneralAffExController.cs"},{"SourceFile":"Controllers\\FinOwnerChangeEquityController.cs"},{"SourceFile":"Controllers\\FinProfilePanelController.cs"},{"SourceFile":"Controllers\\FinProfitTableController.cs"},{"SourceFile":"Controllers\\FinProfitTableExController.cs"},{"SourceFile":"Controllers\\FinSpecialAffController.cs"},{"SourceFile":"Controllers\\FinSpecialAffExController.cs"},{"SourceFile":"Controllers\\FRMReportInfoController.cs"},{"SourceFile":"Controllers\\HomeController.cs"},{"SourceFile":"Controllers\\InfoCashFlowController.cs"},{"SourceFile":"Controllers\\InfoInputOutputController.cs"},{"SourceFile":"Controllers\\InfoProductGroupController.cs"},{"SourceFile":"Controllers\\InfoProductMapController.cs"},{"SourceFile":"Controllers\\LawAbnormalController.cs"},{"SourceFile":"Controllers\\LawSuitController.cs"},{"SourceFile":"Controllers\\MkCAPRevController.cs"},{"SourceFile":"Controllers\\MkCompanyTableController.cs"},{"SourceFile":"Controllers\\MkDownloadZipController.cs"},{"SourceFile":"Controllers\\MkFinanceLeaseController.cs"},{"SourceFile":"Controllers\\MkImportRecordsController.cs"},{"SourceFile":"Controllers\\MkPledgeRevController.cs"},{"SourceFile":"Controllers\\MkReceivablesPledgeController.cs"},{"SourceFile":"Controllers\\MkTrustTableController.cs"},{"SourceFile":"Controllers\\MkYongYi_Product_InfoController.cs"},{"SourceFile":"Controllers\\MonPlanTableController.cs"},{"SourceFile":"Controllers\\MonRecycleTableController.cs"},{"SourceFile":"Controllers\\MonRemindEmailController.cs"},{"SourceFile":"Controllers\\MonRemindRuleController.cs"},{"SourceFile":"Controllers\\MonShareOneController.cs"},{"SourceFile":"Controllers\\NeeqController.cs"},{"SourceFile":"Controllers\\PageRouteController.cs"},{"SourceFile":"Controllers\\PayController.cs"},{"SourceFile":"Controllers\\PjrzController.cs"},{"SourceFile":"Controllers\\ProjectController.cs"},{"SourceFile":"Controllers\\ProjectExController.cs"},{"SourceFile":"Controllers\\ProjStateChangeController.cs"},{"SourceFile":"Controllers\\ProjStateChangeExController.cs"},{"SourceFile":"Controllers\\ProjStateFlowController.cs"},{"SourceFile":"Controllers\\PropertyInfoController.cs"},{"SourceFile":"Controllers\\PropertyInfoExController.cs"},{"SourceFile":"Controllers\\QxbController.cs"},{"SourceFile":"Controllers\\ReportFlaseDataController.cs"},{"SourceFile":"Controllers\\RmcCapitalAndDebtController.cs"},{"SourceFile":"Controllers\\RmcCashFlowSupYTController.cs"},{"SourceFile":"Controllers\\RmcCashFlowTableController.cs"},{"SourceFile":"Controllers\\RmcCashFlowTableSupController.cs"},{"SourceFile":"Controllers\\RmcCashFlowYTController.cs"},{"SourceFile":"Controllers\\RmcCustomAffController.cs"},{"SourceFile":"Controllers\\RmcFileAffController.cs"},{"SourceFile":"Controllers\\RmcFileController.cs"},{"SourceFile":"Controllers\\RmcFinancialDataController.cs"},{"SourceFile":"Controllers\\RmcFinancialRiskController.cs"},{"SourceFile":"Controllers\\RmcFinancialTargetController.cs"},{"SourceFile":"Controllers\\RmcGeneralAffController.cs"},{"SourceFile":"Controllers\\RmcLibraryController.cs"},{"SourceFile":"Controllers\\RmcManagementReportController.cs"},{"SourceFile":"Controllers\\RmcOwnerChangeEquityController.cs"},{"SourceFile":"Controllers\\RmcPowerController.cs"},{"SourceFile":"Controllers\\RmcProfitTableController.cs"},{"SourceFile":"Controllers\\RmcProfitYTController.cs"},{"SourceFile":"Controllers\\RmcQualitySystemController.cs"},{"SourceFile":"Controllers\\RmcSpecialAffController.cs"},{"SourceFile":"Controllers\\RzdzyController.cs"},{"SourceFile":"Controllers\\SearchInfoController.cs"},{"SourceFile":"Controllers\\QiChaChaController.cs"},{"SourceFile":"Controllers\\RateAssetRecoverController.cs"},{"SourceFile":"Controllers\\RateBaseController.cs"},{"SourceFile":"Controllers\\RateCompanyController.cs"},{"SourceFile":"Controllers\\RateGradeController.cs"},{"SourceFile":"Controllers\\RateRiskFactorController.cs"},{"SourceFile":"Controllers\\RatingReportController.cs"},{"SourceFile":"Controllers\\ReportHistoryController.cs"},{"SourceFile":"Controllers\\RightChangePlanController.cs"},{"SourceFile":"Controllers\\RightStockController.cs"},{"SourceFile":"Controllers\\SubjectController.cs"},{"SourceFile":"Controllers\\SubjectExController.cs"},{"SourceFile":"Controllers\\SubjectGroupController.cs"},{"SourceFile":"Controllers\\SubjectGroupExController.cs"},{"SourceFile":"Controllers\\TianYanChaController.cs"},{"SourceFile":"Controllers\\CrawlerMonitorController.cs"},{"SourceFile":"Controllers\\TushareController.cs"},{"SourceFile":"Controllers\\TushareNewsController.cs"},{"SourceFile":"Controllers\\UrbanInvestmentController.cs"},{"SourceFile":"Controllers\\UserController.cs"},{"SourceFile":"Controllers\\VoteController.cs"},{"SourceFile":"Controllers\\VoteExController.cs"},{"SourceFile":"Controllers\\WaterfallInnerController.cs"},{"SourceFile":"Controllers\\WaterfallTableController.cs"},{"SourceFile":"Controllers\\WeChatController.cs"},{"SourceFile":"Filter\\LoginCheckedAttribute.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"Controllers\\OutRateController.cs"},{"SourceFile":"Controllers\\IndustryController.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Controllers\\RecoverPlanController.cs"},{"SourceFile":"obj\\x64\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Antlr.3.4.1.9004\\lib\\Antlr3.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Portable.BouncyCastle.1.8.6\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\CommonHelper\\bin\\Debug\\CommonHelper.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Flurl.4.0.0\\lib\\net461\\Flurl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Flurl.Http.4.0.2\\lib\\net461\\Flurl.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend.BLL\\bin\\Debug\\GasolineBlend.BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend.Entity\\bin\\Debug\\GasolineBlend.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\SharpZipLib.0.86.0\\lib\\20\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\LinqToExcel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.Agent.Intercept.2.0.6\\lib\\net45\\Microsoft.AI.Agent.Intercept.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.DependencyCollector.2.2.0\\lib\\net45\\Microsoft.AI.DependencyCollector.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0\\lib\\net45\\Microsoft.AI.PerfCounterCollector.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0\\lib\\net45\\Microsoft.AI.ServerTelemetryChannel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.Web.2.2.0\\lib\\net45\\Microsoft.AI.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.WindowsServer.2.2.0\\lib\\net45\\Microsoft.AI.WindowsServer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.ApplicationInsights.2.2.0\\lib\\net45\\Microsoft.ApplicationInsights.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.Bcl.AsyncInterfaces.6.0.0\\lib\\net461\\Microsoft.Bcl.AsyncInterfaces.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8\\lib\\net45\\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.Web.Infrastructure.1.0.0.0\\lib\\net40\\Microsoft.Web.Infrastructure.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Newtonsoft.Json.13.0.3\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\NPOI.2.3.0\\lib\\net40\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\Remotion.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\Remotion.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\LinqToExcel.1.11.0\\lib\\Remotion.Interfaces.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\RiskControl.NewService\\bin\\Debug\\RiskControl.NewService.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\SqlSugar.5.1.4.72\\lib\\SqlSugar.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Buffers.4.5.1\\lib\\net461\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Memory.4.5.4\\lib\\net461\\System.Memory.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.Http.WebRequest.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Numerics.Vectors.4.5.0\\lib\\net46\\System.Numerics.Vectors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Runtime.CompilerServices.Unsafe.6.0.0\\lib\\net461\\System.Runtime.CompilerServices.Unsafe.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Security.Principal.Windows.5.0.0\\lib\\net461\\System.Security.Principal.Windows.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Text.Encodings.Web.6.0.0\\lib\\net461\\System.Text.Encodings.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Text.Json.6.0.4\\lib\\net461\\System.Text.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.Threading.Tasks.Extensions.4.5.4\\lib\\net461\\System.Threading.Tasks.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.ValueTuple.4.5.0\\lib\\net461\\System.ValueTuple.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.Helpers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.Mvc.5.2.3\\lib\\net45\\System.Web.Mvc.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.Web.Optimization.1.1.3\\lib\\net40\\System.Web.Optimization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.Razor.3.2.3\\lib\\net45\\System.Web.Razor.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Routing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.WebPages.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.WebPages.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\Microsoft.AspNet.WebPages.3.2.3\\lib\\net45\\System.Web.WebPages.Razor.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\WebGrease.1.5.2\\lib\\WebGrease.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend\\bin\\GasolineBlend.dll","OutputItemRelativePath":"GasolineBlend.dll"},{"OutputItemFullPath":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend\\bin\\GasolineBlend.pdb","OutputItemRelativePath":"GasolineBlend.pdb"}],"CopyToOutputEntries":[]}
GasolineBlend/Controllers/ArticleDataController.cs
@@ -99,6 +99,52 @@
        }
        /// <summary>
        ///获取关键词列表数据
        /// </summary>
        /// <param name="Platform"></param>
        /// <param name="ArticleType"></param>
        /// <param name="Keyword"></param>
        /// <param name="PageNumber"></param>
        /// <param name="PageSize"></param>
        /// <param name="UserId"></param>
        /// <returns></returns>
        [HttpPost]
        public ActionResult GetArticleContentList(string Platform, string ArticleType, string Scope, string Keyword, int PageNumber, int PageSize, int UserId)
        {
            try
            {
                var list = _acc.GetArticleContentList(Platform, ArticleType, Scope, Keyword, PageNumber, PageSize, UserId);
                var response = new
                {
                    Data = list.Data,
                    TotalCount = list.TotalCount,
                    TotalPages = list.TotalPages
                };
                if (!string.IsNullOrWhiteSpace(Keyword))
                {
                    if (UserId == 0)
                    {
                        UserId = -1;
                    }
                }
                return SuccessNoShow(data: response);
            }
            catch (Exception e)
            {
                LogHelper.Write(Level.Error, "获取关键词列表数据 GetArticleContentList", e, OperatorProvider.Instance.Current == null ? "GuestEx" : OperatorProvider.Instance.Current.LoginName);
                return Error();
            }
        }
        /// <summary>
        ///获取市区列表数据
        /// </summary>
GasolineBlend/Controllers/ChatHistoryController.cs
@@ -58,6 +58,7 @@
                string Prompt = _acc.GetPromptData(AgentId);
                Prompt = Prompt.Replace("\t", "").Replace("\n", "").Replace("\r", "").Replace("\f", "");
                Prompt = Prompt.Replace(" ", "");
                Prompt = Prompt.Replace("\"", "“");
                var list = _acc.GetChatHistory6List(AgentId, UserId);
                string historylist = "";
               for (int i = list.Count - 1; i >= 0; i--) {
GasolineBlend/Controllers/CompanyInfoController.cs
New file
@@ -0,0 +1,41 @@
using CommonHelper;
using GasolineBlend.BLL;
using GasolineBlend.Entity;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace GasolineBlend.Controllers
{
    public class CompanyInfoController : BaseController
    {
        private CompanyInfoBLL _acc = new CompanyInfoBLL();
        /// <summary>
        ///获取地区智能体数据
        /// </summary>
        /// <param name="Keyword"></param>
        /// <returns></returns>
        [HttpPost]
        public ActionResult GetCompanyInfoList(string KeywordProduct, string KeywordIndustry, int PageNum, int PageSize)
        {
            try
            {
                var list = _acc.GetCompanyInfoList(KeywordProduct, KeywordIndustry, PageNum,  PageSize);
                return SuccessNoShow(data: list);
            }
            catch (Exception e)
            {
                LogHelper.Write(Level.Error, "获取地区智能体数据 GetCompanyInfoList", e, OperatorProvider.Instance.Current == null ? "GuestEx" : OperatorProvider.Instance.Current.LoginName);
                return Error();
            }
        }
    }
}
GasolineBlend/GasolineBlend.csproj
@@ -222,7 +222,7 @@
    <Compile Include="App_Start\FilterConfig.cs" />
    <Compile Include="App_Start\RouteConfig.cs" />
    <Compile Include="App_Start\WebExceptionFilterAttribute.cs" />
    <Compile Include="Controllers\EnterpriseInformation.cs" />
    <Compile Include="Controllers\CompanyInfoController.cs" />
    <Compile Include="Controllers\DefaultCompanyController.cs" />
    <Compile Include="Controllers\PushDataController.cs" />
    <Compile Include="Controllers\OrderDataController.cs" />