Compare commits

..

No commits in common. "c1e0665826a7a8464e772265be7b3a8fa7dc5938" and "73134b736a18fe294c7b9183bc1aa9333ea631c1" have entirely different histories.

5 changed files with 88 additions and 62 deletions

View File

@ -1,37 +1,57 @@
using Autofac; using Autofac;
using Autofac.Extensions.DependencyInjection; using Autofac.Extensions.DependencyInjection;
using BZPT.Api.Middleware; using Microsoft.AspNetCore.Builder;
using BZPT.Domains.IRepositories; using Microsoft.AspNetCore.Hosting;
using BZPT.Repositories;
using IGeekFan.AspNetCore.Knife4jUI;
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.HttpOverrides;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Controllers; using Microsoft.AspNetCore.Mvc.Controllers;
using Microsoft.AspNetCore.Mvc.ModelBinding; using Microsoft.AspNetCore.Mvc.ModelBinding;
using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.DependencyInjection;
using Microsoft.IdentityModel.Tokens; using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.OpenApi.Models; using Microsoft.OpenApi.Models;
using Newtonsoft.Json; using System;
using NPlatform.API; using System.IO;
using NPlatform.Infrastructure.Config;
//using Hangfire;
//using Hangfire.Redis.StackExchange;
//using Hangfire.Dashboard.BasicAuthorization;
using NPlatform.Infrastructure.IdGenerators;
using NPlatform.Middleware;
using NPlatform.Repositories;
using Serilog;
using Serilog.Context;
using ServiceStack;
using SqlSugar;
using StackExchange.Redis;
using System.Security.Cryptography.X509Certificates;
using System.Text; using System.Text;
using System.Threading.Tasks;
using NPlatform.Infrastructure.Config;
using NPlatform.Middleware;
using NPlatform.API;
using NPlatform.DI;
using NPlatform.Repositories;
using Newtonsoft.Json;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using SqlSugar;
using IGeekFan.AspNetCore.Knife4jUI;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authentication.Cookies;
using IdentityServer4.Configuration;
using System.Security.Cryptography.X509Certificates;
using BZPT.Repositories;
using Microsoft.Extensions.DependencyInjection.Extensions;
using NPlatform.Infrastructure.Config.Section;
using ServiceStack;
using Microsoft.IdentityModel.Tokens;
using Hangfire;
using Hangfire.Redis.StackExchange;
using Hangfire.Dashboard.BasicAuthorization;
using BZPT.Domains.Application;
using System.Security.Claims;
using NPlatform.Infrastructure.IdGenerators;
using NPOI.SS.Formula.Functions;
using Microsoft.AspNetCore.DataProtection;
using StackExchange.Redis;
using BZPT.Api.Middleware;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Newtonsoft.Json.Linq;
using Serilog.Context;
using Serilog;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.Extensions.FileProviders;
using BZPT.Domains.IRepositories;
using BZPT.Domains.IService.Sys;
using BZPT.Api;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.HttpOverrides;
var builder = WebApplication.CreateBuilder(args); var builder = WebApplication.CreateBuilder(args);
var serviceConfig = builder.Configuration.GetServiceConfig(); var serviceConfig = builder.Configuration.GetServiceConfig();
@ -50,20 +70,20 @@ var redisConfig = builder.Configuration.GetRedisConfig();
//从配置获取 Redis 连接字符串 //从配置获取 Redis 连接字符串
var redisConn = $"{redisConfig.Connections?.FirstOrDefault()},password={redisConfig.Password}"; var redisConn = $"{redisConfig.Connections?.FirstOrDefault()},password={redisConfig.Password}";
Console.WriteLine("redis 连接:" + redisConn); Console.WriteLine("redis 连接:" + redisConn);
//// 配置 Hangfire // 配置 Hangfire
//builder.Services.AddHangfire(x => builder.Services.AddHangfire(x =>
//{ {
// x.SetDataCompatibilityLevel(CompatibilityLevel.Version_170) x.SetDataCompatibilityLevel(CompatibilityLevel.Version_170)
// .UseSimpleAssemblyNameTypeSerializer() .UseSimpleAssemblyNameTypeSerializer()
// .UseRecommendedSerializerSettings() .UseRecommendedSerializerSettings()
// .UseRedisStorage(redisConn, new RedisStorageOptions .UseRedisStorage(redisConn, new RedisStorageOptions
// { {
// Db = 11, Db = 11,
// Prefix = "Hangfire:" Prefix = "Hangfire:"
// }); });
//}); });
//builder.Services.AddHangfireServer(); builder.Services.AddHangfireServer();
// 连接到 Redis // 连接到 Redis
var connectionMultiplexer = ConnectionMultiplexer.Connect(redisConn); var connectionMultiplexer = ConnectionMultiplexer.Connect(redisConn);

View File

@ -41,6 +41,13 @@
"CERT_PASSWORD": "ydl825913", "CERT_PASSWORD": "ydl825913",
"ConsulServer": "http://localhost:8500", "ConsulServer": "http://localhost:8500",
"AllowedOrigins": "http://localhost:19901,http://192.168.0.100:40000", "AllowedOrigins": "http://localhost:19901,http://192.168.0.100:40000",
"AuthorityServer": "https://192.168.1.100:19902",
"AllowedHosts": "*", "AllowedHosts": "*",
"Urls": "http://0.0.0.0:19901", "Urls": "http://0.0.0.0:19901",
"RedisConfig": {
"RedisType": "Normal",
"Connections": [ "redismy:6379" ],
"dbNum": 10,
"Password": "redis&&!123"
}
} }

View File

@ -33,5 +33,6 @@
"AllowedOrigins": "http://localhost:19901,http://localhost:3000,http://localhost:5173", "AllowedOrigins": "http://localhost:19901,http://localhost:3000,http://localhost:5173",
"AllowedHosts": "*", "AllowedHosts": "*",
"RetryCount": 10, "RetryCount": 10,
"AuthorityServer": "https://106.52.199.114:8001",
"SystemHome": "https://106.52.199.114:8000/" "SystemHome": "https://106.52.199.114:8000/"
} }

View File

@ -28,7 +28,7 @@
"Url": "http://*:19901" "Url": "http://*:19901"
}, },
"Https": { "Https": {
"Url": "https://*:19902" "Url": "https://*:8001"
} }
} }
}, },
@ -46,10 +46,7 @@
"AllowedOrigins": "http://localhost:19901,http://localhost:3000,http://localhost:5173", "AllowedOrigins": "http://localhost:19901,http://localhost:3000,http://localhost:5173",
"AllowedHosts": "*", "AllowedHosts": "*",
"RetryCount": 10, "RetryCount": 10,
"REDIS_HOST": "localhost", "AuthorityServer": "https://106.52.199.114:8001/",
"REDIS_PASSWORD": "redis&&!123",
"REDIS_DBNUM": "1",
"AuthorityServer": "https://localhost:19901/",
"SystemHome": "https://106.52.199.114:8000/", "SystemHome": "https://106.52.199.114:8000/",
"Hangfire": { "Hangfire": {
"AdminPassword": "HNjt123~" "AdminPassword": "HNjt123~"

View File

@ -1,7 +1,19 @@
using BZPT.Repositories; using BZPT.Domains.IRepositories.Sys;
using BZPT.Dto.Sys;
using BZPT.Repositories;
using Consul.Filtering;
using DevExtreme.AspNet.Data; using DevExtreme.AspNet.Data;
using NetTaste;
using NPlatform.Domains.Entity;
using NPOI.SS.Formula.Functions;
using ServiceStack; using ServiceStack;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net; using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace BZPT.Domains.Services namespace BZPT.Domains.Services
{ {
@ -115,12 +127,6 @@ namespace BZPT.Domains.Services
{ {
loadOptionsexp.Sort = new SortingInfo[] { new SortingInfo() { Selector = "CreateTime", Desc = true } }; loadOptionsexp.Sort = new SortingInfo[] { new SortingInfo() { Selector = "CreateTime", Desc = true } };
} }
if (loadOptionsexp.Filter == null)
{
loadOptionsexp.Filter = new List<object>();
}
Type type = typeof(TEntity); Type type = typeof(TEntity);
// 检查是否存在指定名称的接口 // 检查是否存在指定名称的接口
Type interfaceType = type.GetInterface("ILogicDelete"); Type interfaceType = type.GetInterface("ILogicDelete");
@ -140,11 +146,6 @@ namespace BZPT.Domains.Services
{ {
loadOptionsexp.Sort = new SortingInfo[] { new SortingInfo() { Selector = "CreateTime", Desc = true } }; loadOptionsexp.Sort = new SortingInfo[] { new SortingInfo() { Selector = "CreateTime", Desc = true } };
} }
if (loadOptionsexp.Filter == null)
{
loadOptionsexp.Filter = new List<object>();
}
Type type = typeof(TEntity); Type type = typeof(TEntity);
// 检查是否存在指定名称的接口 // 检查是否存在指定名称的接口
Type interfaceType = type.GetInterface("ILogicDelete"); Type interfaceType = type.GetInterface("ILogicDelete");