chenzx
2024-12-17 5dab4426911016866b657197d6598b7a2da157c4
20241217接口更新
3 文件已重命名
10个文件已修改
1个文件已添加
232 ■■■■■ 已修改文件
.vs/PolicyControl/FileContentIndex/5e6cfeea-caca-4a4d-8f84-1754bb6373e6.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/7b81220d-cfdc-4942-8177-9c3a16ade14f.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/af2f4439-aa26-4d11-be79-861183632538.vsidx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/v17/fileList.bin 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.BLL/SubsidyDataBLL.cs 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.DAL/AgentDataDAL.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend.Entity/AgentDataPage.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/.vs/GasolineBlend.csproj.dtbcache.json 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/Controllers/AgentDataController.cs 44 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/Controllers/SubsidyDataController.cs 74 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/GasolineBlend.csproj 51 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/Web.config 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/packages.config 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
GasolineBlend/评分标准.xlsx 补丁 | 查看 | 原始文档 | blame | 历史
.vs/PolicyControl/FileContentIndex/5e6cfeea-caca-4a4d-8f84-1754bb6373e6.vsidx
Binary files differ
.vs/PolicyControl/FileContentIndex/7b81220d-cfdc-4942-8177-9c3a16ade14f.vsidx
Binary files differ
.vs/PolicyControl/FileContentIndex/af2f4439-aa26-4d11-be79-861183632538.vsidx
Binary files differ
.vs/PolicyControl/v17/fileList.bin
Binary files differ
GasolineBlend.BLL/SubsidyDataBLL.cs
@@ -61,6 +61,10 @@
                    string responseBody = response.Content.ReadAsStringAsync().Result;
                    // å°†JSON字符串反序列化为JObject
                    JObject jsonData = JObject.Parse(responseBody);
                    if ((int)jsonData["error_code"] != 0) {
                        return null;
                    }
                    // è®¿é—®åµŒå¥—çš„JSON属性
                    City = (string)jsonData["result"]["city"];
                    Region = (string)jsonData["result"]["district"];
@@ -222,9 +226,9 @@
        {
                try
                {
                int IsVIP = _acc.GetIsPolicyVIPList(UserId);
                    int Count = _sir.GetSubsidyInquiryRecordToDayCount(UserId);
                int IsVIP =34;
                //int IsVIP = _acc.GetIsPolicyVIPList(UserId);
                int Count = _sir.GetSubsidyInquiryRecordToDayCount(UserId);
                    if (Count>= IsVIP) {
                        Console.WriteLine("今日政策洞察额度已经用完,如有需要请联系管理员!");
                        return "-1";
@@ -246,7 +250,7 @@
                // è®¾ç½®API的URL
                string apiUrl = "http://122.51.217.202/v1/workflows/run";
                // è®¾ç½®æŽˆæƒä»¤ç‰Œ
                string bearerToken = "app-rkZ7HxYgO77OHUsLruW9ozhY";
                string bearerToken = "app-Glt4LjjBtby9DXoK2ohHunxO";
                // è®¾ç½®è¯·æ±‚çš„JSON内容
                string jsonContent = $@"{{
            ""user"": ""rensofter"",
@@ -285,11 +289,11 @@
                        // è§£æždata字段中的JSON字符串
                        var datatxt = JObject.Parse(outputs);
                        // æå–output字段
                        string text = datatxt["text"].ToString();
                        string text = datatxt["data"].ToString();
                        bool isInsert = _sir.AddSubsidyInquiryRecordData(UserId, CompanyName, text);
                            if (!isInsert&& text == null)
                            if (!isInsert&& data == null)
                            {
                                Console.WriteLine("请求失败");
                                return null;
@@ -310,7 +314,5 @@
                }
        
        }
    }
}
GasolineBlend.DAL/AgentDataDAL.cs
@@ -20,7 +20,7 @@
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT a.id,a.name,a.prompt,a.permission,a.creationtime,a.modificationtime,a.avatarlink,a.creatorid,a.agenttype,a.description,a.userno,a.questionno,a.modelapi,a.modelkey,CASE WHEN s.agentid IS NOT NULL THEN 1 ELSE 0 END AS favoriteflag FROM agentdata a LEFT JOIN staragent s ON a.id = s.agentid AND s.userid = '{CreatorId}' WHERE 1=1";
                var sql = $"SELECT a.id,a.name,a.prompt,a.permission,a.creationtime,a.modificationtime,a.avatarlink,a.creatorid,a.agenttype,a.description,a.userno,a.questionno,a.modelapi,a.modelkey,a.systemrouting,CASE WHEN s.agentid IS NOT NULL THEN 1 ELSE 0 END AS favoriteflag FROM agentdata a LEFT JOIN staragent s ON a.id = s.agentid AND s.userid = '{CreatorId}' WHERE 1=1";
                if (!string.IsNullOrEmpty(Keyword)) {
                    sql += $" and a.name like '%{Keyword.Trim()}%' ";
                }
@@ -73,7 +73,7 @@
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT a.id,a.name,a.prompt,a.permission,a.creationtime,a.modificationtime,a.avatarlink,a.creatorid,a.agenttype,a.description,a.userno,a.questionno,a.modelapi,a.modelkey,CASE WHEN s.agentid IS NOT NULL THEN 1 ELSE 0 END AS favoriteflag FROM agentdata a LEFT JOIN staragent s ON a.id = s.agentid AND s.userid = '{CreatorId}' WHERE a.creatorid = '{CreatorId.Trim()}' ";
                var sql = $"SELECT a.id,a.name,a.prompt,a.permission,a.creationtime,a.modificationtime,a.avatarlink,a.creatorid,a.agenttype,a.description,a.userno,a.questionno,a.modelapi,a.modelkey,a.systemrouting,CASE WHEN s.agentid IS NOT NULL THEN 1 ELSE 0 END AS favoriteflag FROM agentdata a LEFT JOIN staragent s ON a.id = s.agentid AND s.userid = '{CreatorId}' WHERE a.creatorid = '{CreatorId.Trim()}' ";
                if (!string.IsNullOrEmpty(Keyword))
                {
                    sql += $" and a.name like '%{Keyword.Trim()}%' ";
@@ -133,7 +133,8 @@
                    avatarLink = @AvatarLink,
                    description = @Description,
                    modelapi = @ModelApi,
                    modelkey = @ModelKey
                    modelkey = @ModelKey,
                    systemrouting = @SystemRouting,
                WHERE id = @Id";
                var parameters = new
@@ -146,7 +147,8 @@
                    AgentType = agentDataPage.AgentType,
                    Description = agentDataPage.Description,
                    ModelApi = agentDataPage.ModelApi,
                    ModelKey = agentDataPage.ModelKey
                    ModelKey = agentDataPage.ModelKey,
                    SystemRouting = agentDataPage.SystemRouting
                };
                connection.Open(); // æ‰“开数据库连接
@@ -161,7 +163,7 @@
            {
                var sql = @"
                INSERT INTO agentdata (name, prompt, permission, creationtime, modificationtime, avatarLink, creatorid,agenttype,description,modelapi,modelkey)
                VALUES ( @Name, @Prompt, @Permission,NOW(), NOW(), @AvatarLink, @CreatorId,@AgentType,@Description,@ModelApi,@ModelKey)";
                VALUES ( @Name, @Prompt, @Permission,NOW(), NOW(), @AvatarLink, @CreatorId,@AgentType,@Description,@ModelApi,@ModelKey,@SystemRouting)";
                var parameters = new 
                {
@@ -173,7 +175,8 @@
                    AgentType = agentDataPage.AgentType,
                    Prompt = agentDataPage.Prompt,
                    ModelApi = agentDataPage.ModelApi,
                    ModelKey = agentDataPage.ModelKey
                    ModelKey = agentDataPage.ModelKey,
                    SystemRouting = agentDataPage.SystemRouting
                };
                connection.Open(); // æ‰“开数据库连接
GasolineBlend.Entity/AgentDataPage.cs
@@ -76,6 +76,11 @@
        /// 
        public string ModelKey { get; set; }
        /// <summary>
        ///系统路由
        /// </summary>
        ///
        public string SystemRouting { get; set; }
        /// <summary>
        ///回答次数
        /// </summary>
        /// 
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\\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":[]}
{"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\\StockDataController.cs"},{"SourceFile":"Controllers\\TreeDiagramRecord.cs"},{"SourceFile":"Controllers\\CompanyInfoController.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\\DocumentFormat.OpenXml.3.2.0\\lib\\net46\\DocumentFormat.OpenXml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\DocumentFormat.OpenXml.Framework.3.2.0\\lib\\net46\\DocumentFormat.OpenXml.Framework.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"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.Office.Interop.Excel.15.0.4795.1001\\lib\\net20\\Microsoft.Office.Interop.Excel.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\\OfficeOpenXml.Core.ExcelPackage.1.0.0\\lib\\net46\\OfficeOpenXml.Core.ExcelPackage.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.IO.FileSystem.Primitives.4.0.1\\lib\\net46\\System.IO.FileSystem.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\packages\\System.IO.Packaging.4.0.0\\lib\\net46\\System.IO.Packaging.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":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\WindowsBase.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/AgentDataController.cs
@@ -163,5 +163,49 @@
                return Content("上传过程中发生错误:" + ex.Message);
            }
        }
        [HttpPost]
        public ActionResult UploadFileDocx()
        {
            try
            {
                if (Request.Files.Count > 0)
                {
                    var uploadFile = Request.Files[0];
                    if (uploadFile != null && uploadFile.ContentLength > 0)
                    {
                        // èŽ·å–æ–‡ä»¶æ‰©å±•å
                        string extension = Path.GetExtension(uploadFile.FileName).ToLower();
                        if (extension != ".docx" && extension != ".doc")
                        {
                            return Content("不支持的文件类型!");
                        }
                        // åˆ›å»ºæ–‡ä»¶åï¼ˆä½¿ç”¨å½“前时间戳)
                        string fileName = DateTime.Now.ToString("yyyyMMddHHmmssffff");
                        string filePath = Path.Combine(Server.MapPath("~/HaoshuRobot/"), fileName + extension);
                        // ä¿å­˜æ–‡ä»¶
                        uploadFile.SaveAs(filePath);
                        // è¿”回文件的访问地址
                        string fileUrl = $"/HaoshuRobot/{fileName}{extension}";
                        return Json(new { success = true, fileUrl = fileUrl }, JsonRequestBehavior.AllowGet);
                    }
                    else
                    {
                        return Content("请选择一个文件上传!");
                    }
                }
                else
                {
                    return Content("没有文件上传!");
                }
            }
            catch (Exception ex)
            {
                return Content("上传过程中发生错误:" + ex.Message);
            }
        }
    }
}
GasolineBlend/Controllers/SubsidyDataController.cs
@@ -12,6 +12,13 @@
using System.Web;
using System.Web.Mvc;
using System.Web.Razor.Tokenizer.Symbols;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml;
using System.Net.Http;
using OfficeOpenXml;
using WebGrease.Activities;
using ClosedXML.Excel;
namespace GasolineBlend.Controllers
@@ -31,9 +38,9 @@
            try
            {
                var list = _acc.GetSubsidyDataList(PageNumber, PageSize, Keyword, CompanyName);
                if (list.Data == null)
                if (list == null)
                {
                    return Error();
                    return SuccessNoShow(data:"暂无此公司");
                }
                var response = new
                {
@@ -116,8 +123,7 @@
        {
            try
            {
                //var id = OperatorProvider.Instance.Current.UserId;
                var id = 1;
                var id = OperatorProvider.Instance.Current.UserId;
                if (id == 0)
                {
                    return Error(message: "账户未登录!请登录后查询", data: "-1");
@@ -142,7 +148,63 @@
                return Error();
            }
        }
        [HttpPost]
        public ActionResult GetSaveExcel(string data)
        {
            try
            {
                var filePath = SaveDataToExcel(data);
                var fileBytes = System.IO.File.ReadAllBytes(filePath);
                return File(fileBytes, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "评分标准.xlsx");
            }
            catch (Exception e)
            {
                LogHelper.Write(Level.Error, "GetSaveExcel请求过程中发生错误", e, OperatorProvider.Instance.Current == null ? "GuestEx" : OperatorProvider.Instance.Current.LoginName);
                return Error();
            }
        }
        public static string SaveDataToExcel(string data)
        {
            // è§£æžä¼ è¾“的数据
            var dataDict = ParseData(data);
            // åˆ›å»ºæˆ–打开Excel文件
            //var filePath = "E:\\.NETproject\\RRkl\\RR_PolicyControl_MVC\\RR_PolicyControl_MVC\\GasolineBlend\\评分标准.xlsx";
            var filePath = "C:\\inetpub\\RRPolicy\\HaoshuRobot\\评分标准.xlsx";
            var workbook = new XLWorkbook(filePath);
            var worksheet = workbook.Worksheet(1) ?? workbook.AddWorksheet("Sheet1");
            // å°†æ•°æ®å¡«å…¥F列
            int rowIndex = 1;
            foreach (var entry in dataDict)
            {
                worksheet.Cell(rowIndex, 6).Value = entry.Key;
                worksheet.Cell(rowIndex, 7).Value = entry.Value;
                rowIndex++;
            }
            // ä¿å­˜æ–‡ä»¶
            workbook.Save();
            return filePath;
        }
        private static Dictionary<string, int> ParseData(string data)
        {
            var dataDict = new Dictionary<string, int>();
            var entries = data.Split(',');
            foreach (var entry in entries)
            {
                var parts = entry.Split(':');
                if (parts.Length == 2 && int.TryParse(parts[1], out int value))
                {
                    dataDict[parts[0].Trim()] = value;
                }
            }
            return dataDict;
        }
    }
}
GasolineBlend/GasolineBlend.csproj
@@ -52,6 +52,30 @@
    <Reference Include="BouncyCastle.Crypto, Version=1.8.6.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
      <HintPath>..\packages\Portable.BouncyCastle.1.8.6\lib\net40\BouncyCastle.Crypto.dll</HintPath>
    </Reference>
    <Reference Include="ClosedXML, Version=0.104.2.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\ClosedXML.0.104.2\lib\netstandard2.0\ClosedXML.dll</HintPath>
    </Reference>
    <Reference Include="ClosedXML.Parser, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1d5f7376574c51ec, processorArchitecture=MSIL">
      <HintPath>..\packages\ClosedXML.Parser.1.2.0\lib\netstandard2.0\ClosedXML.Parser.dll</HintPath>
    </Reference>
    <Reference Include="DocumentFormat.OpenXml, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
      <HintPath>..\packages\DocumentFormat.OpenXml.3.2.0\lib\net46\DocumentFormat.OpenXml.dll</HintPath>
    </Reference>
    <Reference Include="DocumentFormat.OpenXml.Framework, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
      <HintPath>..\packages\DocumentFormat.OpenXml.Framework.3.2.0\lib\net46\DocumentFormat.OpenXml.Framework.dll</HintPath>
    </Reference>
    <Reference Include="EPPlus, Version=7.5.2.0, Culture=neutral, PublicKeyToken=ea159fdaa78159a1, processorArchitecture=MSIL">
      <HintPath>..\packages\EPPlus.7.5.2\lib\net35\EPPlus.dll</HintPath>
    </Reference>
    <Reference Include="EPPlus.Interfaces, Version=7.5.0.0, Culture=neutral, PublicKeyToken=a694d7f3b0907a61, processorArchitecture=MSIL">
      <HintPath>..\packages\EPPlus.Interfaces.7.5.0\lib\net35\EPPlus.Interfaces.dll</HintPath>
    </Reference>
    <Reference Include="EPPlus.System.Drawing, Version=7.5.0.0, Culture=neutral, PublicKeyToken=2308d35469c9bac0, processorArchitecture=MSIL">
      <HintPath>..\packages\EPPlus.System.Drawing.7.5.0\lib\net35\EPPlus.System.Drawing.dll</HintPath>
    </Reference>
    <Reference Include="ExcelNumberFormat, Version=1.1.0.0, Culture=neutral, PublicKeyToken=23c6f5d73be07eca, processorArchitecture=MSIL">
      <HintPath>..\packages\ExcelNumberFormat.1.1.0\lib\net20\ExcelNumberFormat.dll</HintPath>
    </Reference>
    <Reference Include="Flurl, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\Flurl.4.0.0\lib\net461\Flurl.dll</HintPath>
    </Reference>
@@ -67,10 +91,17 @@
    <Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.6.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Bcl.HashCode, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.Bcl.HashCode.1.1.1\lib\net461\Microsoft.Bcl.HashCode.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
      <EmbedInteropTypes>True</EmbedInteropTypes>
    </Reference>
    <Reference Include="MWArray, Version=2.14.0.0, Culture=neutral, PublicKeyToken=e1d84a0da19db86f, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>bin\MWArray.dll</HintPath>
@@ -90,6 +121,14 @@
    <Reference Include="NPOI.OpenXmlFormats, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
      <HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXmlFormats.dll</HintPath>
    </Reference>
    <Reference Include="OfficeOpenXml.Core.ExcelPackage, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\OfficeOpenXml.Core.ExcelPackage.1.0.0\lib\net46\OfficeOpenXml.Core.ExcelPackage.dll</HintPath>
    </Reference>
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="RBush, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\RBush.4.0.0\lib\netstandard2.0\RBush.dll</HintPath>
    </Reference>
    <Reference Include="Remotion, Version=1.13.52.2, Culture=neutral, PublicKeyToken=0669cf0452175907, processorArchitecture=MSIL">
      <HintPath>..\packages\LinqToExcel.1.11.0\lib\Remotion.dll</HintPath>
    </Reference>
@@ -98,6 +137,9 @@
    </Reference>
    <Reference Include="Remotion.Interfaces, Version=1.13.52.2, Culture=neutral, PublicKeyToken=0669cf0452175907, processorArchitecture=MSIL">
      <HintPath>..\packages\LinqToExcel.1.11.0\lib\Remotion.Interfaces.dll</HintPath>
    </Reference>
    <Reference Include="SixLabors.Fonts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d998eea7b14cab13, processorArchitecture=MSIL">
      <HintPath>..\packages\SixLabors.Fonts.1.0.0\lib\netstandard2.0\SixLabors.Fonts.dll</HintPath>
    </Reference>
    <Reference Include="SqlSugar, Version=5.1.4.72, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\SqlSugar.5.1.4.72\lib\SqlSugar.dll</HintPath>
@@ -108,6 +150,12 @@
    </Reference>
    <Reference Include="System.Data" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.IO.FileSystem.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\packages\System.IO.FileSystem.Primitives.4.0.1\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
    </Reference>
    <Reference Include="System.IO.Packaging, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\packages\System.IO.Packaging.4.0.0\lib\net46\System.IO.Packaging.dll</HintPath>
    </Reference>
    <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
      <HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
    </Reference>
@@ -119,6 +167,7 @@
      <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
    </Reference>
    <Reference Include="System.Runtime.Serialization" />
    <Reference Include="System.Security" />
    <Reference Include="System.Security.Principal.Windows, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll</HintPath>
    </Reference>
@@ -193,6 +242,7 @@
      <Private>True</Private>
      <HintPath>..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath>
    </Reference>
    <Reference Include="WindowsBase" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="Microsoft.ApplicationInsights">
@@ -2163,6 +2213,7 @@
    <Content Include="Views\waiBuBeiDanBao\historicalFinancial.vue" />
    <Content Include="Views\waiBuBeiDanBao\information_waiBu.vue" />
    <Content Include="Views\waiBuBeiDanBao\publicInformation_waiBu.vue" />
    <Content Include="评分标准.xlsx" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="App_Data\" />
GasolineBlend/Web.config
@@ -145,6 +145,14 @@
        <assemblyIdentity name="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.6.1.0" newVersion="3.6.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="DocumentFormat.OpenXml.Framework" publicKeyToken="8fb06cb64d019a17" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.2.0.0" newVersion="3.2.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="DocumentFormat.OpenXml" publicKeyToken="8fb06cb64d019a17" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.2.0.0" newVersion="3.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <system.webServer>
GasolineBlend/packages.config
@@ -2,6 +2,14 @@
<packages>
  <package id="Antlr" version="3.4.1.9004" targetFramework="net461" />
  <package id="bootstrap" version="3.0.0" targetFramework="net461" />
  <package id="ClosedXML" version="0.104.2" targetFramework="net461" />
  <package id="ClosedXML.Parser" version="1.2.0" targetFramework="net461" />
  <package id="DocumentFormat.OpenXml" version="3.2.0" targetFramework="net461" />
  <package id="DocumentFormat.OpenXml.Framework" version="3.2.0" targetFramework="net461" />
  <package id="EPPlus" version="7.5.2" targetFramework="net461" />
  <package id="EPPlus.Interfaces" version="7.5.0" targetFramework="net461" />
  <package id="EPPlus.System.Drawing" version="7.5.0" targetFramework="net461" />
  <package id="ExcelNumberFormat" version="1.1.0" targetFramework="net461" />
  <package id="Flurl" version="4.0.0" targetFramework="net461" />
  <package id="Flurl.Http" version="4.0.2" targetFramework="net461" />
  <package id="jQuery" version="1.10.2" targetFramework="net461" />
@@ -23,18 +31,25 @@
  <package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net461" />
  <package id="Microsoft.AspNet.WebPages.zh-Hans" version="3.2.3" targetFramework="net461" />
  <package id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0" targetFramework="net461" />
  <package id="Microsoft.Bcl.HashCode" version="1.1.1" targetFramework="net461" />
  <package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.8" targetFramework="net461" />
  <package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.2.3" targetFramework="net461" />
  <package id="Microsoft.Net.Compilers" version="2.4.0" targetFramework="net461" developmentDependency="true" />
  <package id="Microsoft.Office.Interop.Excel" version="15.0.4795.1001" targetFramework="net461" />
  <package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
  <package id="Modernizr" version="2.6.2" targetFramework="net461" />
  <package id="Newtonsoft.Json" version="13.0.3" targetFramework="net461" />
  <package id="NPOI" version="2.3.0" targetFramework="net461" />
  <package id="OfficeOpenXml.Core.ExcelPackage" version="1.0.0" targetFramework="net461" />
  <package id="Portable.BouncyCastle" version="1.8.6" targetFramework="net461" />
  <package id="RBush" version="4.0.0" targetFramework="net461" />
  <package id="Respond" version="1.2.0" targetFramework="net461" />
  <package id="SharpZipLib" version="0.86.0" targetFramework="net461" />
  <package id="SixLabors.Fonts" version="1.0.0" targetFramework="net461" />
  <package id="SqlSugar" version="5.1.4.72" targetFramework="net461" />
  <package id="System.Buffers" version="4.5.1" targetFramework="net461" />
  <package id="System.IO.FileSystem.Primitives" version="4.0.1" targetFramework="net461" />
  <package id="System.IO.Packaging" version="4.0.0" targetFramework="net461" />
  <package id="System.Memory" version="4.5.4" targetFramework="net461" />
  <package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net461" />
  <package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net461" />
GasolineBlend/ÆÀ·Ö±ê×¼.xlsx
Binary files differ