Compare commits
55 Commits
99fc92a798
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 47174c95b4 | |||
|
|
44e24a52d3 | ||
|
|
ddce3eb13e | ||
|
|
a58143f70d | ||
|
|
f991f07460 | ||
|
|
b1362f6e17 | ||
|
|
fabb68741d | ||
|
|
ad947e2e4e | ||
|
|
1cbe89979d | ||
|
|
ed07172d7c | ||
|
|
9fc6339d6f | ||
|
|
93809e9c17 | ||
|
|
a21290bc14 | ||
|
|
7c764fb1e0 | ||
|
|
d058c3cad3 | ||
|
|
c38bb2e96f | ||
|
|
4f902aecdd | ||
|
|
93d73c4c57 | ||
| 279b46198b | |||
| ec0a8d9b79 | |||
| d8cfe8bbe5 | |||
|
|
450128918e | ||
|
|
181e2dba61 | ||
|
|
678d23ba66 | ||
|
|
897b5b6f6c | ||
| 21f36e8045 | |||
| 4778230684 | |||
| c1e9c3f66d | |||
| 941031591d | |||
| a859aab071 | |||
|
|
b9e0f54b4d | ||
|
|
184504d23e | ||
| 099fa26524 | |||
| 34aefdc088 | |||
| bcfe2bb493 | |||
| e169657e21 | |||
| 681d0fbed9 | |||
| 90ddc7c88d | |||
| 38066c7a1c | |||
| 6dbbe45c03 | |||
| 64c0ca87ed | |||
| 3dc40ea982 | |||
| bb81e82cf9 | |||
| 869ce7fd2d | |||
|
|
5c34dacb05 | ||
|
|
fa8423cded | ||
| 342e540a54 | |||
| 4310ba1516 | |||
| 1210c59220 | |||
|
|
3d40b91bef | ||
| bd0b8efd0c | |||
| 0e79b61a65 | |||
| 0b38ca3613 | |||
|
|
52df04ace0 | ||
|
|
238615b668 |
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"ExpandedNodes": [
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"PreviewInSolutionExplorer": false
|
|
||||||
}
|
|
||||||
BIN
.vs/slnx.sqlite
BIN
.vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
@@ -46,5 +46,9 @@ namespace Ewide.Nbzs.BackWorkerService
|
|||||||
{
|
{
|
||||||
return GetDbClient().GetConnection(id);
|
return GetDbClient().GetConnection(id);
|
||||||
}
|
}
|
||||||
|
public static string GetZlbSecretKey()
|
||||||
|
{
|
||||||
|
return App.GetConfig<string>("ZlbSecretKey");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,12 +6,14 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="5.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Ewide.Nbzs.Entity\Ewide.Nbzs.Entity.csproj" />
|
<ProjectReference Include="..\Ewide.Nbzs.Entity\Ewide.Nbzs.Entity.csproj" />
|
||||||
|
<ProjectReference Include="..\framework\Api\Ewide.Core\Ewide.Core.csproj" />
|
||||||
<ProjectReference Include="..\framework\Api\Furion\framework\Furion.Extras.DatabaseAccessor.SqlSugar\Furion.Extras.DatabaseAccessor.SqlSugar.csproj" />
|
<ProjectReference Include="..\framework\Api\Furion\framework\Furion.Extras.DatabaseAccessor.SqlSugar\Furion.Extras.DatabaseAccessor.SqlSugar.csproj" />
|
||||||
<ProjectReference Include="..\framework\Api\Furion\framework\Furion.Extras.Logging.Serilog\Furion.Extras.Logging.Serilog.csproj" />
|
<ProjectReference Include="..\framework\Api\Furion\framework\Furion.Extras.Logging.Serilog\Furion.Extras.Logging.Serilog.csproj" />
|
||||||
<ProjectReference Include="..\framework\Api\Furion\framework\Furion\Furion.csproj" />
|
<ProjectReference Include="..\framework\Api\Furion\framework\Furion\Furion.csproj" />
|
||||||
|
|||||||
@@ -24,6 +24,13 @@ namespace Ewide.Nbzs.BackWorkerService
|
|||||||
.ConfigureServices((hostContext, services) =>
|
.ConfigureServices((hostContext, services) =>
|
||||||
{
|
{
|
||||||
services.AddHostedService<Worker>();
|
services.AddHostedService<Worker>();
|
||||||
|
services.AddStackExchangeRedisCache(options =>
|
||||||
|
{
|
||||||
|
// 连接字符串,这里也可以读取配置文件
|
||||||
|
options.Configuration = App.GetConfig<string>("RedisConfig");
|
||||||
|
// 键名前缀
|
||||||
|
options.InstanceName = "zlb_";
|
||||||
|
});
|
||||||
}).UseSerilogDefault();
|
}).UseSerilogDefault();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
|
using Ewide.Core;
|
||||||
using Ewide.Nbzs.Entity;
|
using Ewide.Nbzs.Entity;
|
||||||
|
using Ewide.Nbzs.Entity.Extends;
|
||||||
using Furion;
|
using Furion;
|
||||||
|
using Furion.DataEncryption;
|
||||||
|
using Furion.JsonSerialization;
|
||||||
using Furion.TaskScheduler;
|
using Furion.TaskScheduler;
|
||||||
|
using Microsoft.Extensions.Caching.Distributed;
|
||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using SqlSugar;
|
using SqlSugar;
|
||||||
@@ -18,11 +23,20 @@ namespace Ewide.Nbzs.BackWorkerService
|
|||||||
private readonly ILogger<Worker> _logger;
|
private readonly ILogger<Worker> _logger;
|
||||||
readonly SqlSugarProvider db_Product_Conn;
|
readonly SqlSugarProvider db_Product_Conn;
|
||||||
readonly SqlSugarProvider db_Zlb_Conn;
|
readonly SqlSugarProvider db_Zlb_Conn;
|
||||||
|
//private readonly IDistributedCache _cache;
|
||||||
|
private readonly ICache _cache;
|
||||||
|
//, IDistributedCache cache
|
||||||
public Worker(ILogger<Worker> logger)
|
public Worker(ILogger<Worker> logger)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
db_Product_Conn = DbManage.GetConnection("Product_Conn");
|
db_Product_Conn = DbManage.GetConnection("Product_Conn");
|
||||||
db_Zlb_Conn = DbManage.GetConnection("Zlb_Conn");
|
db_Zlb_Conn = DbManage.GetConnection("Zlb_Conn");
|
||||||
|
//_cache = cache;
|
||||||
|
_cache = new RedisCache(Microsoft.Extensions.Options.Options.Create<CacheOptions>(new CacheOptions
|
||||||
|
{
|
||||||
|
CacheType = CacheType.RedisCache,
|
||||||
|
RedisConnectionString = App.GetConfig<string>("RedisConfig")
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||||
@@ -88,6 +102,7 @@ namespace Ewide.Nbzs.BackWorkerService
|
|||||||
|
|
||||||
private List<PushResult> Push(PushZlb pushZlbObj)
|
private List<PushResult> Push(PushZlb pushZlbObj)
|
||||||
{
|
{
|
||||||
|
//测试读取接口中缓存
|
||||||
_logger.LogInformation("进入Push方法():Id:{Id} ,项目ID:{PrjId} at: {time}", pushZlbObj.ID, pushZlbObj.PrjId, DateTimeOffset.Now);
|
_logger.LogInformation("进入Push方法():Id:{Id} ,项目ID:{PrjId} at: {time}", pushZlbObj.ID, pushZlbObj.PrjId, DateTimeOffset.Now);
|
||||||
List<PushResult> list_result = new();
|
List<PushResult> list_result = new();
|
||||||
try
|
try
|
||||||
@@ -96,79 +111,180 @@ namespace Ewide.Nbzs.BackWorkerService
|
|||||||
var project = db_Product_Conn.Queryable<Projects>().Where(p => p.ID == projectId).First();
|
var project = db_Product_Conn.Queryable<Projects>().Where(p => p.ID == projectId).First();
|
||||||
if (project != null)
|
if (project != null)
|
||||||
{
|
{
|
||||||
|
#region 政策
|
||||||
|
_cache.Set($"CacheData-PoliciesRegulations", db_Zlb_Conn.Queryable<Entity.PoliciesRegulations>().ToList());
|
||||||
|
|
||||||
|
var listPoliciesRegulations = db_Product_Conn.Queryable<Entity.PoliciesRegulations>().ToList();
|
||||||
|
//_cache.SetString($"CacheData-PoliciesRegulations", JSON.Serialize(listPoliciesRegulations), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
//删政策
|
//删政策
|
||||||
var delete_result = db_Zlb_Conn.Deleteable<PoliciesRegulations>().ExecuteCommandHasChange();
|
var delete_result = db_Zlb_Conn.Deleteable<Entity.PoliciesRegulations>().ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "PoliciesRegulations", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "PoliciesRegulations", IsSuccess = delete_result });
|
||||||
|
|
||||||
|
var insert_result = db_Zlb_Conn.Insertable(listPoliciesRegulations).ExecuteCommand();
|
||||||
|
list_result.Add(new PushResult { Action = "Insert", TableName = "PoliciesRegulations", IsSuccess = insert_result > 0 });
|
||||||
|
_cache.Set($"CacheData-PoliciesRegulations", db_Zlb_Conn.Queryable<Entity.PoliciesRegulations>().ToList());
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 非住宅协议
|
||||||
|
_cache.Set($"CacheData-ResidentialAgreement", GetBcxyData());
|
||||||
//if (delete_result)
|
//if (delete_result)
|
||||||
//{
|
//{
|
||||||
var insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<PoliciesRegulations>().ToList()).ExecuteCommand();
|
//加密敏感字段
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "PoliciesRegulations", IsSuccess = insert_result > 0 });
|
var listNonResidentialAgreement = db_Product_Conn.Queryable<NonResidentialAgreement>().Where(p => p.ProjectID == projectId).ToList();
|
||||||
//}
|
listNonResidentialAgreement.ForEach(p =>
|
||||||
|
{
|
||||||
|
p.ExpropriatedCardNo = MD5Encryption.Encrypt(p.ExpropriatedCardNo);
|
||||||
|
p.ExpropriatedPhone = MD5Encryption.Encrypt(p.ExpropriatedPhone);
|
||||||
|
});
|
||||||
|
//_cache.SetString($"CacheData-NonResidentialAgreement-{projectId}", JSON.Serialize(listNonResidentialAgreement), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
|
|
||||||
//删除非住宅协议
|
//删除非住宅协议
|
||||||
delete_result = db_Zlb_Conn.Deleteable<NonResidentialAgreement>().Where(p => p.ProjectID == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<NonResidentialAgreement>().Where(p => p.ProjectID == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "NonResidentialAgreement", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "NonResidentialAgreement", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
//{
|
insert_result = db_Zlb_Conn.Insertable(listNonResidentialAgreement).ExecuteCommand();
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<NonResidentialAgreement>().Where(p => p.ProjectID == projectId).ToList()).ExecuteCommand();
|
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "NonResidentialAgreement", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "NonResidentialAgreement", IsSuccess = insert_result > 0 });
|
||||||
//}
|
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 住宅协议
|
||||||
|
|
||||||
|
//加密敏感字段
|
||||||
|
var listResidentialAgreement = db_Product_Conn.Queryable<ResidentialAgreement>().Where(p => p.ProjectID == projectId).ToList();
|
||||||
|
listResidentialAgreement.ForEach(p =>
|
||||||
|
{
|
||||||
|
p.ExpropriatedCardNo = MD5Encryption.Encrypt(p.ExpropriatedCardNo);
|
||||||
|
p.ExpropriatedPhone = MD5Encryption.Encrypt(p.ExpropriatedPhone);
|
||||||
|
});
|
||||||
|
//_cache.SetString($"CacheData-ResidentialAgreement-{projectId}", JSON.Serialize(listResidentialAgreement), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
//删除住宅协议
|
//删除住宅协议
|
||||||
delete_result = db_Zlb_Conn.Deleteable<ResidentialAgreement>().Where(p => p.ProjectID == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<ResidentialAgreement>().Where(p => p.ProjectID == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "ResidentialAgreement", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "ResidentialAgreement", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
//{
|
insert_result = db_Zlb_Conn.Insertable(listResidentialAgreement).ExecuteCommand();
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<ResidentialAgreement>().Where(p => p.ProjectID == projectId).ToList()).ExecuteCommand();
|
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "ResidentialAgreement", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "ResidentialAgreement", IsSuccess = insert_result > 0 });
|
||||||
//}
|
|
||||||
|
_cache.Set($"CacheData-ResidentialAgreement", GetBcxyData());
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 非住宅评估
|
||||||
|
_cache.Set($"CacheData-InvestigateTable_Assessment", GetFHPGData());
|
||||||
|
var listNonInvestigateTable_Assessment = db_Product_Conn.Queryable<NonInvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ToList();
|
||||||
|
//_cache.SetString($"CacheData-NonInvestigateTable_Assessment-{projectId}", JSON.Serialize(listNonInvestigateTable_Assessment), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
//删除非住宅评估
|
//删除非住宅评估
|
||||||
delete_result = db_Zlb_Conn.Deleteable<NonInvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<NonInvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "NonInvestigateTable_Assessment", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "NonInvestigateTable_Assessment", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
//{
|
insert_result = db_Zlb_Conn.Insertable(listNonInvestigateTable_Assessment).ExecuteCommand();
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<NonInvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ToList()).ExecuteCommand();
|
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "NonInvestigateTable_Assessment", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "NonInvestigateTable_Assessment", IsSuccess = insert_result > 0 });
|
||||||
//}
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 住宅评估
|
||||||
|
var listInvestigateTable_Assessment = db_Product_Conn.Queryable<InvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ToList();
|
||||||
|
//_cache.SetString($"CacheData-InvestigateTable_Assessment-{projectId}", JSON.Serialize(listInvestigateTable_Assessment), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
//删除住宅评估
|
//删除住宅评估
|
||||||
delete_result = db_Zlb_Conn.Deleteable<InvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<InvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "InvestigateTable_Assessment", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "InvestigateTable_Assessment", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
//{
|
insert_result = db_Zlb_Conn.Insertable(listInvestigateTable_Assessment).ExecuteCommand();
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<InvestigateTable_Assessment>().Where(p => p.ProjectId == projectId).ToList()).ExecuteCommand();
|
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "InvestigateTable_Assessment", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "InvestigateTable_Assessment", IsSuccess = insert_result > 0 });
|
||||||
//}
|
|
||||||
|
_cache.Set($"CacheData-InvestigateTable_Assessment", GetFHPGData());
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 非住宅调查表
|
||||||
|
_cache.Set($"CacheData-NonResidentialInvestigateTable", db_Zlb_Conn.Queryable<NonResidentialInvestigateTable>().Select(p => new { dcbId = p.ID, PrjId = p.ProjectId, ExpropriatedCardNo = p.PropertyRightPrsonCardNo }).ToList());
|
||||||
//删除非住宅调查表
|
//删除非住宅调查表
|
||||||
delete_result = db_Zlb_Conn.Deleteable<NonResidentialInvestigateTable>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<NonResidentialInvestigateTable>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "NonResidentialInvestigateTable", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "NonResidentialInvestigateTable", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
|
//加密敏感字段
|
||||||
|
var listNonInvestigateTable = db_Product_Conn.Queryable<NonResidentialInvestigateTable>().Where(p => p.ProjectId == projectId).ToList();
|
||||||
|
listNonInvestigateTable.ForEach(p =>
|
||||||
|
{
|
||||||
|
p.PropertyRightPrsonCardNo = MD5Encryption.Encrypt(p.PropertyRightPrsonCardNo);
|
||||||
|
p.TheLegalRepresentativePhone = MD5Encryption.Encrypt(p.TheLegalRepresentativePhone);
|
||||||
|
});
|
||||||
|
//_cache.SetString($"CacheData-NonResidentialInvestigateTable-{projectId}", JSON.Serialize(listNonInvestigateTable), new DistributedCacheEntryOptions
|
||||||
//{
|
//{
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<NonResidentialInvestigateTable>().Where(p => p.ProjectId == projectId).ToList()).ExecuteCommand();
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
|
insert_result = db_Zlb_Conn.Insertable(listNonInvestigateTable).ExecuteCommand();
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "NonResidentialInvestigateTable", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "NonResidentialInvestigateTable", IsSuccess = insert_result > 0 });
|
||||||
//}
|
_cache.Set($"CacheData-NonResidentialInvestigateTable", db_Zlb_Conn.Queryable<NonResidentialInvestigateTable>().Select(p => new { dcbId = p.ID, PrjId = p.ProjectId, ExpropriatedCardNo = p.PropertyRightPrsonCardNo }).ToList());
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 住宅调查表
|
||||||
|
_cache.Set($"CacheData-InvestigateTable", db_Zlb_Conn.Queryable<InvestigateTable>().Select(p => new { dcbId = p.ID, PrjId = p.ProjectId, p.ExpropriatedCardNo }).ToList());
|
||||||
//删除住宅调查表
|
//删除住宅调查表
|
||||||
delete_result = db_Zlb_Conn.Deleteable<InvestigateTable>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<InvestigateTable>().Where(p => p.ProjectId == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "InvestigateTable", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "InvestigateTable", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
|
//加密敏感字段
|
||||||
|
var listInvestigateTable = db_Product_Conn.Queryable<InvestigateTable>().Where(p => p.ProjectId == projectId).ToList();
|
||||||
|
listInvestigateTable.ForEach(p =>
|
||||||
|
{
|
||||||
|
p.ExpropriatedCardNo = MD5Encryption.Encrypt(p.ExpropriatedCardNo);
|
||||||
|
p.ExpropriatedPhone = MD5Encryption.Encrypt(p.ExpropriatedPhone);
|
||||||
|
});
|
||||||
|
//_cache.SetString($"CacheData-InvestigateTable-{projectId}", JSON.Serialize(listInvestigateTable), new DistributedCacheEntryOptions
|
||||||
//{
|
//{
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<InvestigateTable>().Where(p => p.ProjectId == projectId).ToList()).ExecuteCommand();
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
|
insert_result = db_Zlb_Conn.Insertable(listInvestigateTable).ExecuteCommand();
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "InvestigateTable", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "InvestigateTable", IsSuccess = insert_result > 0 });
|
||||||
//}
|
_cache.Set($"CacheData-InvestigateTable", db_Zlb_Conn.Queryable<InvestigateTable>().Select(p => new { dcbId = p.ID, PrjId = p.ProjectId, p.ExpropriatedCardNo }).ToList());
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region 项目
|
||||||
|
_cache.Set($"CacheData-Projects", GetProjectData());
|
||||||
|
var listProjects = db_Product_Conn.Queryable<Projects>().Where(p => p.ID == projectId).ToList();
|
||||||
|
//_cache.SetString($"CacheData-Projects-{projectId}", JSON.Serialize(listProjects), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
//删项目
|
//删项目
|
||||||
delete_result = db_Zlb_Conn.Deleteable<Projects>().Where(p => p.ID == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<Projects>().Where(p => p.ID == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "Projects", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "Projects", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
//{
|
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<Projects>().Where(p => p.ID == projectId).ToList()).ExecuteCommand();
|
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "Projects", IsSuccess = insert_result > 0 });
|
|
||||||
//}
|
|
||||||
|
|
||||||
|
insert_result = db_Zlb_Conn.Insertable(listProjects).ExecuteCommand();
|
||||||
|
list_result.Add(new PushResult { Action = "Insert", TableName = "Projects", IsSuccess = insert_result > 0 });
|
||||||
|
_cache.Set($"CacheData-Projects", GetProjectData());
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region ProjectsStep
|
||||||
|
_cache.Set($"CacheData-ProjectsStep", db_Zlb_Conn.Queryable<ProjectsStep>().ToList());
|
||||||
|
var listProjectsStep = db_Product_Conn.Queryable<ProjectsStep>().Where(p => p.ProjectID == projectId).ToList();
|
||||||
|
//_cache.SetString($"CacheData-ProjectsStep-{projectId}", JSON.Serialize(listProjectsStep), new DistributedCacheEntryOptions
|
||||||
|
//{
|
||||||
|
// SlidingExpiration = TimeSpan.FromMinutes(60)
|
||||||
|
//});
|
||||||
//ProjectsStep
|
//ProjectsStep
|
||||||
delete_result = db_Zlb_Conn.Deleteable<ProjectsStep>().Where(p => p.ProjectID == projectId).ExecuteCommandHasChange();
|
delete_result = db_Zlb_Conn.Deleteable<ProjectsStep>().Where(p => p.ProjectID == projectId).ExecuteCommandHasChange();
|
||||||
list_result.Add(new PushResult { Action = "Delete", TableName = "ProjectsStep", IsSuccess = delete_result });
|
list_result.Add(new PushResult { Action = "Delete", TableName = "ProjectsStep", IsSuccess = delete_result });
|
||||||
//if (delete_result)
|
|
||||||
//{
|
insert_result = db_Zlb_Conn.Insertable(listProjectsStep).ExecuteCommand();
|
||||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<ProjectsStep>().Where(p => p.ProjectID == projectId).ToList()).ExecuteCommand();
|
|
||||||
list_result.Add(new PushResult { Action = "Insert", TableName = "ProjectsStep", IsSuccess = insert_result > 0 });
|
list_result.Add(new PushResult { Action = "Insert", TableName = "ProjectsStep", IsSuccess = insert_result > 0 });
|
||||||
//}
|
|
||||||
|
_cache.Set($"CacheData-ProjectsStep", db_Zlb_Conn.Queryable<ProjectsStep>().ToList());
|
||||||
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
StringBuilder push_error_reason = new();
|
StringBuilder push_error_reason = new();
|
||||||
@@ -204,6 +320,18 @@ namespace Ewide.Nbzs.BackWorkerService
|
|||||||
_logger.LogInformation("离开Push方法():Id:{Id} ,项目ID:{PrjId} at: {time}", pushZlbObj.ID, pushZlbObj.PrjId, DateTimeOffset.Now);
|
_logger.LogInformation("离开Push方法():Id:{Id} ,项目ID:{PrjId} at: {time}", pushZlbObj.ID, pushZlbObj.PrjId, DateTimeOffset.Now);
|
||||||
return list_result;
|
return list_result;
|
||||||
}
|
}
|
||||||
|
private List<H5IndexPrjModel> GetProjectData()
|
||||||
|
{
|
||||||
|
return db_Zlb_Conn.Ado.SqlQuery<H5IndexPrjModel>("select status,a.ID Prjid,a.area,a.AreaID,a.HouseAcquisitionDepartment as zsbm,a.CollectDecisionNo1 as year,(isnull(a.CollectDecisionNoHeadName,'')+'['+cast(a.CollectDecisionNo1 as varchar)+']'+ isnull(cast(a.CollectDecisionNo2 as varchar),'')+'号') zsjdh,dbo.get_current_state(a.ID) CurrentState,NAME,CreateRecordTime from Projects a ");
|
||||||
|
}
|
||||||
|
private List<Fhpgs> GetFHPGData()
|
||||||
|
{
|
||||||
|
return db_Zlb_Conn.Ado.SqlQuery<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type,p.EvaluationCompany from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type,p.EvaluationCompany from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 ;");
|
||||||
|
}
|
||||||
|
private List<Bcxy> GetBcxyData()
|
||||||
|
{
|
||||||
|
return db_Zlb_Conn.Ado.SqlQuery<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type,TotalAllocationArea from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type,TotalAllocationArea from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 ; ");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public class PushResult
|
public class PushResult
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -34,5 +34,7 @@
|
|||||||
"Enabled": true,
|
"Enabled": true,
|
||||||
"ConnectionString": "data source=118.178.224.202;initial catalog=NbzsZlb;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;MultipleActiveResultSets=True;App=EntityFramework"
|
"ConnectionString": "data source=118.178.224.202;initial catalog=NbzsZlb;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;MultipleActiveResultSets=True;App=EntityFramework"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"ZlbSecretKey": "A4D58EAF1948B29E5954B3DB425D5F2C",
|
||||||
|
"RedisConfig": "10.19.94.250:6380,password=nbzszlb!@#"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,11 +16,13 @@ namespace Ewide.Nbzs.Entity.Extends
|
|||||||
{
|
{
|
||||||
public string dcbId { get; set; }
|
public string dcbId { get; set; }
|
||||||
public string PrjId { get; set; }
|
public string PrjId { get; set; }
|
||||||
|
public string ExpropriatedCardNo { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
public class Fhpgs
|
public class Fhpgs
|
||||||
{
|
{
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
[Newtonsoft.Json.JsonIgnore]
|
//[Newtonsoft.Json.JsonIgnore]
|
||||||
public string dcbId { get; set; }
|
public string dcbId { get; set; }
|
||||||
public string PrjId { get; set; }
|
public string PrjId { get; set; }
|
||||||
public string AssessmentNo { get; set; }
|
public string AssessmentNo { get; set; }
|
||||||
@@ -29,12 +31,13 @@ namespace Ewide.Nbzs.Entity.Extends
|
|||||||
public string CreateTime { get; set; }
|
public string CreateTime { get; set; }
|
||||||
public string CreateUserName { get; set; }
|
public string CreateUserName { get; set; }
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
|
public string EvaluationCompany { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
public class Bcxy
|
public class Bcxy
|
||||||
{
|
{
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
[Newtonsoft.Json.JsonIgnore]
|
//[Newtonsoft.Json.JsonIgnore]
|
||||||
public string dcbId { get; set; }
|
public string dcbId { get; set; }
|
||||||
public string PrjId { get; set; }
|
public string PrjId { get; set; }
|
||||||
public string XyNo { get; set; }
|
public string XyNo { get; set; }
|
||||||
@@ -44,6 +47,7 @@ namespace Ewide.Nbzs.Entity.Extends
|
|||||||
public string countValue { get; set; }
|
public string countValue { get; set; }
|
||||||
public string SignTime { get; set; }
|
public string SignTime { get; set; }
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
|
public string TotalAllocationArea { get; set; }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -65,7 +69,7 @@ namespace Ewide.Nbzs.Entity.Extends
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string Area { get; set; }
|
public string Area { get; set; }
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
[Newtonsoft.Json.JsonIgnore]
|
//[Newtonsoft.Json.JsonIgnore]
|
||||||
public string AreaID { get; set; }
|
public string AreaID { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 征收部门
|
/// 征收部门
|
||||||
@@ -95,6 +99,7 @@ namespace Ewide.Nbzs.Entity.Extends
|
|||||||
/// 补偿协议集合
|
/// 补偿协议集合
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public List<Bcxy> BcxyList { get; set; }
|
public List<Bcxy> BcxyList { get; set; }
|
||||||
|
public int status { get; set; }
|
||||||
}
|
}
|
||||||
public class PoliciesRegulations
|
public class PoliciesRegulations
|
||||||
{
|
{
|
||||||
@@ -107,7 +112,7 @@ namespace Ewide.Nbzs.Entity.Extends
|
|||||||
public Guid ID { get; set; }
|
public Guid ID { get; set; }
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public string Contents { get; set; }
|
public string Contents { get; set; }
|
||||||
public DateTime? PublicTime { get; set; }
|
public string PublicTime { get; set; }
|
||||||
public string Area { get; set; }
|
public string Area { get; set; }
|
||||||
}
|
}
|
||||||
public class FHPG
|
public class FHPG
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<ShowAllFiles>false</ShowAllFiles>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -19,6 +19,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Furion.RemoteRequest.Extensions;
|
using Furion.RemoteRequest.Extensions;
|
||||||
using Microsoft.AspNetCore.Hosting;
|
using Microsoft.AspNetCore.Hosting;
|
||||||
|
using Ewide.Core;
|
||||||
|
|
||||||
namespace Ewide.NbzsZheliban.Service
|
namespace Ewide.NbzsZheliban.Service
|
||||||
{
|
{
|
||||||
@@ -28,12 +29,18 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
private readonly ISqlSugarRepository repository;
|
private readonly ISqlSugarRepository repository;
|
||||||
private readonly SqlSugarClient db;
|
private readonly SqlSugarClient db;
|
||||||
private readonly IJsonSerializerProvider _jsonSerializer;
|
private readonly IJsonSerializerProvider _jsonSerializer;
|
||||||
|
private readonly ICache _cache;
|
||||||
public DataService(ISqlSugarRepository sqlSugarRepository, IJsonSerializerProvider jsonSerializer, IHostingEnvironment hostingEnvironment)
|
public DataService(ISqlSugarRepository sqlSugarRepository, IJsonSerializerProvider jsonSerializer, IHostingEnvironment hostingEnvironment)
|
||||||
{
|
{
|
||||||
repository = sqlSugarRepository;
|
repository = sqlSugarRepository;
|
||||||
db = repository.Context;
|
db = repository.Context;
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
this._hostingEnvironment = hostingEnvironment;
|
this._hostingEnvironment = hostingEnvironment;
|
||||||
|
_cache = new RedisCache(Microsoft.Extensions.Options.Options.Create<CacheOptions>(new CacheOptions
|
||||||
|
{
|
||||||
|
CacheType = CacheType.RedisCache,
|
||||||
|
RedisConnectionString = App.GetConfig<string>("RedisConfig")
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -90,8 +97,13 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="cardno"></param>
|
/// <param name="cardno"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private async Task<List<Dcbs>> GetzzDcbsAsync(string cardno)
|
private async Task<List<Dcbs>> GetzzDcbsAsync(string _cardno)
|
||||||
{
|
{
|
||||||
|
var cardno = MD5Encryption.Encrypt(_cardno);
|
||||||
|
var list = _cache.Get<List<Dcbs>>("CacheData-InvestigateTable");
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
|
return list.Where(p => p.ExpropriatedCardNo == cardno).ToList();
|
||||||
|
else
|
||||||
//住宅调查表
|
//住宅调查表
|
||||||
return await db.Ado.SqlQueryAsync<Dcbs>("select ID dcbId,ProjectId PrjId from InvestigateTable b where b.ExpropriatedCardNo=@ExpropriatedCardNo", new List<SugarParameter> { new SugarParameter("ExpropriatedCardNo", cardno, System.Data.DbType.String) }.ToArray());
|
return await db.Ado.SqlQueryAsync<Dcbs>("select ID dcbId,ProjectId PrjId from InvestigateTable b where b.ExpropriatedCardNo=@ExpropriatedCardNo", new List<SugarParameter> { new SugarParameter("ExpropriatedCardNo", cardno, System.Data.DbType.String) }.ToArray());
|
||||||
}
|
}
|
||||||
@@ -100,8 +112,13 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="cardno"></param>
|
/// <param name="cardno"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private async Task<List<Dcbs>> GetfzzDcbsAsync(string cardno)
|
private async Task<List<Dcbs>> GetfzzDcbsAsync(string _cardno)
|
||||||
{
|
{
|
||||||
|
var cardno = MD5Encryption.Encrypt(_cardno);
|
||||||
|
var list = _cache.Get<List<Dcbs>>("CacheData-NonResidentialInvestigateTable");
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
|
return list.Where(p => p.ExpropriatedCardNo == cardno).ToList();
|
||||||
|
else
|
||||||
//非住宅调查表
|
//非住宅调查表
|
||||||
return await db.Ado.SqlQueryAsync<Dcbs>("select ID dcbId,ProjectId PrjId from NonResidentialInvestigateTable b where b.PropertyRightPrsonCardNo=@ExpropriatedCardNo", new List<SugarParameter> { new SugarParameter("ExpropriatedCardNo", cardno, System.Data.DbType.String) }.ToArray());
|
return await db.Ado.SqlQueryAsync<Dcbs>("select ID dcbId,ProjectId PrjId from NonResidentialInvestigateTable b where b.PropertyRightPrsonCardNo=@ExpropriatedCardNo", new List<SugarParameter> { new SugarParameter("ExpropriatedCardNo", cardno, System.Data.DbType.String) }.ToArray());
|
||||||
}
|
}
|
||||||
@@ -112,6 +129,10 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private async Task<List<H5IndexPrjModel>> GetPrjListAsync(IEnumerable<Dcbs> list_dcbs)
|
private async Task<List<H5IndexPrjModel>> GetPrjListAsync(IEnumerable<Dcbs> list_dcbs)
|
||||||
{
|
{
|
||||||
|
var list = _cache.Get<List<H5IndexPrjModel>>("CacheData-Projects");
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
|
return list.Where(p => p.status == 2 && list_dcbs.Select(p => p.PrjId).Contains(p.PrjId)).ToList();
|
||||||
|
else
|
||||||
//项目列表
|
//项目列表
|
||||||
return await db.Ado.SqlQueryAsync<H5IndexPrjModel>("select a.ID Prjid,a.area,a.AreaID,a.HouseAcquisitionDepartment as zsbm,a.CollectDecisionNo1 as year,(isnull(a.CollectDecisionNoHeadName,'')+'['+cast(a.CollectDecisionNo1 as varchar)+']'+ isnull(cast(a.CollectDecisionNo2 as varchar),'')+'号') zsjdh,dbo.get_current_state(a.ID) CurrentState,NAME,CreateRecordTime from Projects a where status = 2 and ID in ('" + string.Join("','", list_dcbs.Select(p => p.PrjId)) + "') ");
|
return await db.Ado.SqlQueryAsync<H5IndexPrjModel>("select a.ID Prjid,a.area,a.AreaID,a.HouseAcquisitionDepartment as zsbm,a.CollectDecisionNo1 as year,(isnull(a.CollectDecisionNoHeadName,'')+'['+cast(a.CollectDecisionNo1 as varchar)+']'+ isnull(cast(a.CollectDecisionNo2 as varchar),'')+'号') zsjdh,dbo.get_current_state(a.ID) CurrentState,NAME,CreateRecordTime from Projects a where status = 2 and ID in ('" + string.Join("','", list_dcbs.Select(p => p.PrjId)) + "') ");
|
||||||
}
|
}
|
||||||
@@ -120,31 +141,59 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="InvestigateTableID_param"></param>
|
/// <param name="InvestigateTableID_param"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private async Task<List<Fhpgs>> GetFHPGListAsync(string InvestigateTableID_param)
|
private async Task<List<Fhpgs>> GetFHPGListAsync(IEnumerable<Dcbs> list_dcbs)
|
||||||
{
|
{
|
||||||
|
var list = _cache.Get<List<Fhpgs>>("CacheData-InvestigateTable_Assessment");
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
|
return list.Where(p => list_dcbs.Select(p => p.dcbId).Contains(p.dcbId)).ToList();
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var InvestigateTableID_param = "'" + string.Join("','", list_dcbs.Select(p => p.dcbId)) + "'";
|
||||||
//分户评估
|
//分户评估
|
||||||
return await db.Ado.SqlQueryAsync<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsPublic=1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsPublic=1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ) ;");
|
return await db.Ado.SqlQueryAsync<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type,p.EvaluationCompany from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type,p.EvaluationCompany from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ) ;");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 补偿协议
|
/// 补偿协议
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="InvestigateTableID_param"></param>
|
/// <param name="InvestigateTableID_param"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private async Task<List<Bcxy>> GetBCXYListAsync(string InvestigateTableID_param)
|
private async Task<List<Bcxy>> GetBCXYListAsync(IEnumerable<Dcbs> list_dcbs)
|
||||||
{
|
{
|
||||||
|
var list = _cache.Get<List<Bcxy>>("CacheData-ResidentialAgreement");
|
||||||
|
if (list != null && list.Count > 0)
|
||||||
|
return list.Where(p => list_dcbs.Select(p => p.dcbId).Contains(p.dcbId)).ToList();
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var InvestigateTableID_param = "'" + string.Join("','", list_dcbs.Select(p => p.dcbId)) + "'";
|
||||||
//补偿协议
|
//补偿协议
|
||||||
return await db.Ado.SqlQueryAsync<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ); ");
|
return await db.Ado.SqlQueryAsync<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type,TotalAllocationArea from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type,TotalAllocationArea from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ); ");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cardno"></param>
|
||||||
|
/// <param name="username"></param>
|
||||||
|
/// <returns></returns>
|
||||||
private async Task<H5IndexModel> GetInfoByCardNoAsync(string cardno, string username)
|
private async Task<H5IndexModel> GetInfoByCardNoAsync(string cardno, string username)
|
||||||
{
|
{
|
||||||
|
var cachedata = _cache.Get("IndexData-" + cardno);
|
||||||
|
if (!string.IsNullOrWhiteSpace(cachedata))
|
||||||
|
return JSON.Deserialize<H5IndexModel>(cachedata);
|
||||||
|
//var cardno_aes = AESEncryption.Decrypt(cardno, Common.GetHashKey());
|
||||||
var list_zz_dcb = await GetzzDcbsAsync(cardno);
|
var list_zz_dcb = await GetzzDcbsAsync(cardno);
|
||||||
var list_fzz_dcb = await GetfzzDcbsAsync(cardno);
|
var list_fzz_dcb = await GetfzzDcbsAsync(cardno);
|
||||||
//调查表集合
|
//调查表集合
|
||||||
var list_dcbs = list_zz_dcb.Concat(list_fzz_dcb);
|
var list_dcbs = list_zz_dcb.Concat(list_fzz_dcb);
|
||||||
var list_projects = await GetPrjListAsync(list_dcbs);
|
var list_projects = await GetPrjListAsync(list_dcbs);
|
||||||
var InvestigateTableID_param = "'" + string.Join("','", list_dcbs.Select(p => p.dcbId)) + "'";
|
|
||||||
var list_fhpgs = await GetFHPGListAsync(InvestigateTableID_param);
|
var list_fhpgs = await GetFHPGListAsync(list_dcbs);
|
||||||
var list_bcxys = await GetBCXYListAsync(InvestigateTableID_param);
|
var list_bcxys = await GetBCXYListAsync(list_dcbs);
|
||||||
|
////解密
|
||||||
|
//list_bcxys.ForEach(xy=> {
|
||||||
|
//xy.ExpropriatedCardNo= AESEncryption.Decrypt(xy.ExpropriatedCardNo, Common.GetHashKey());
|
||||||
|
//});
|
||||||
var listAreas = new List<Guid?> { Guid.Parse("B2A0291C-84C7-4D86-A6D5-CB9FCCF4A2D8") };
|
var listAreas = new List<Guid?> { Guid.Parse("B2A0291C-84C7-4D86-A6D5-CB9FCCF4A2D8") };
|
||||||
list_projects.ForEach(p =>
|
list_projects.ForEach(p =>
|
||||||
{
|
{
|
||||||
@@ -154,23 +203,48 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
p.BcxyList = bcxy;
|
p.BcxyList = bcxy;
|
||||||
listAreas.Add(Guid.Parse(p.AreaID));
|
listAreas.Add(Guid.Parse(p.AreaID));
|
||||||
});
|
});
|
||||||
//政策
|
List<PoliciesRegulation> list_PoliciesRegulations = null;
|
||||||
var list_PoliciesRegulations = await db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(a => listAreas.Contains(a.AreaID)).Select(b => new PoliciesRegulation
|
var listPoliciesRegulationsTemp = _cache.Get<List<Nbzs.Entity.PoliciesRegulations>>("CacheData-PoliciesRegulations");
|
||||||
|
if (listPoliciesRegulationsTemp != null && listPoliciesRegulationsTemp.Count > 0)
|
||||||
|
{
|
||||||
|
list_PoliciesRegulations = listPoliciesRegulationsTemp.Where(a => listAreas.Contains(a.AreaID) && a.IsPublic && (a.PublicTimeEnd == null || a.PublicTimeEnd.Value > DateTime.Now)).Select(b => new PoliciesRegulation
|
||||||
{
|
{
|
||||||
ID = b.ID,
|
ID = b.ID,
|
||||||
Contents = b.Contents,
|
Contents = b.Contents,
|
||||||
PublicTime = b.PublicTime,
|
PublicTime = b.PublicTime.ToString(),
|
||||||
Title = b.Title,
|
Title = b.Title,
|
||||||
Area = b.Area
|
Area = b.Area
|
||||||
}).ToListAsync();
|
}).ToList();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//政策
|
||||||
|
list_PoliciesRegulations = db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(a => listAreas.Contains(a.AreaID) && a.IsPublic && (a.PublicTimeEnd == null || a.PublicTimeEnd.Value > DateTime.Now)).Select(b => new PoliciesRegulation
|
||||||
|
{
|
||||||
|
ID = b.ID,
|
||||||
|
Contents = b.Contents,
|
||||||
|
PublicTime = b.PublicTime.ToString(),
|
||||||
|
Title = b.Title,
|
||||||
|
Area = b.Area
|
||||||
|
}).ToList();
|
||||||
|
}
|
||||||
|
list_PoliciesRegulations.ForEach(a =>
|
||||||
|
{
|
||||||
|
a.PublicTime = Convert.ToDateTime(a.PublicTime).ToString("yyyy-MM-dd");
|
||||||
|
});
|
||||||
|
//移除没有协议也没有分户评估的项目 (空项目)
|
||||||
|
list_projects.FindAll(a => (a.BcxyList == null || a.BcxyList.Count == 0) && (a.FhpgList == null || a.FhpgList.Count == 0)).ForEach(a =>
|
||||||
|
{
|
||||||
|
list_projects.Remove(a);
|
||||||
|
});
|
||||||
Nbzs.Entity.Extends.H5IndexModel h5IndexModel = new()
|
Nbzs.Entity.Extends.H5IndexModel h5IndexModel = new()
|
||||||
{
|
{
|
||||||
PrjList = list_projects,
|
PrjList = list_projects,
|
||||||
IdCard = cardno,
|
IdCard = cardno,
|
||||||
UserName = username,
|
UserName = "*" + username.Substring(1, username.Length - 1),
|
||||||
PoliciesRegulationsLists = new Nbzs.Entity.Extends.PoliciesRegulations { List = list_PoliciesRegulations, TotalCount = list_PoliciesRegulations.Count }
|
PoliciesRegulationsLists = new Nbzs.Entity.Extends.PoliciesRegulations { List = list_PoliciesRegulations, TotalCount = list_PoliciesRegulations.Count }
|
||||||
};
|
};
|
||||||
|
_cache.Set("IndexData-" + cardno, h5IndexModel, new TimeSpan(0, 1, 30));
|
||||||
return h5IndexModel;
|
return h5IndexModel;
|
||||||
}
|
}
|
||||||
private JObject GetInfoByTicket(string ticket)
|
private JObject GetInfoByTicket(string ticket)
|
||||||
@@ -180,7 +254,8 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
var dbTicket = db.Queryable<zjzwfwTickets>().Where(p => p.Ticket == ticket && p.ExpireTime > DateTime.Now).OrderBy(p => p.CreateTime, OrderByType.Desc).First();
|
var dbTicket = db.Queryable<zjzwfwTickets>().Where(p => p.Ticket == ticket && p.ExpireTime > DateTime.Now).OrderBy(p => p.CreateTime, OrderByType.Desc).First();
|
||||||
if (dbTicket != null)
|
if (dbTicket != null)
|
||||||
{
|
{
|
||||||
return JObject.Parse(dbTicket.OriginalResponse);
|
var OriginalResponse = DESCEncryption.Decrypt(dbTicket.OriginalResponse, Common.GetZlbSecretKey());
|
||||||
|
return JObject.Parse(OriginalResponse);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -233,11 +308,11 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
{
|
{
|
||||||
ID = Guid.NewGuid().ToString(),
|
ID = Guid.NewGuid().ToString(),
|
||||||
Ticket = ticket,
|
Ticket = ticket,
|
||||||
IdCardNo = userinfoObj["idnum"].ToString(),
|
IdCardNo = MD5Encryption.Encrypt(userinfoObj["idnum"].ToString()),
|
||||||
UserName = userinfoObj["username"].ToString(),
|
UserName = userinfoObj["username"].ToString(),
|
||||||
ExpireTime = DateTime.Now.AddHours(4),//浙里办的token时效也是4个小时
|
ExpireTime = DateTime.Now.AddHours(4),//浙里办的token时效也是4个小时
|
||||||
CreateTime = DateTime.Now,
|
CreateTime = DateTime.Now,
|
||||||
OriginalResponse = userinfoRsltStr
|
OriginalResponse = DESCEncryption.Encrypt(userinfoRsltStr, Common.GetZlbSecretKey())
|
||||||
}).ExecuteCommand();
|
}).ExecuteCommand();
|
||||||
if (temp1 <= 0)
|
if (temp1 <= 0)
|
||||||
throw Oops.Oh("出现异常,请联系管理员");
|
throw Oops.Oh("出现异常,请联系管理员");
|
||||||
@@ -256,16 +331,40 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
var ticket = args.GetJsonValue("ticket", isThrowExp: true);
|
var ticket = args.GetJsonValue("ticket", isThrowExp: true);
|
||||||
var id = args.GetJsonGuidValue("id", isThrowExp: true);
|
var id = args.GetJsonGuidValue("id", isThrowExp: true);
|
||||||
JObject userInfoObj = GetInfoByTicket(ticket);
|
JObject userInfoObj = GetInfoByTicket(ticket);
|
||||||
var entity = await db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(p => p.ID == id).Select(p => new PoliciesRegulation
|
try
|
||||||
|
{
|
||||||
|
var cachedata = _cache.Get("IndexData-" + userInfoObj["idnum"]);
|
||||||
|
if (!string.IsNullOrWhiteSpace(cachedata))
|
||||||
|
return JSON.Deserialize<H5IndexModel>(cachedata).PoliciesRegulationsLists.List.Find(a => a.ID == id);
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
var listPoliciesRegulationsTemp = _cache.Get<List<Nbzs.Entity.PoliciesRegulations>>("CacheData-PoliciesRegulations");
|
||||||
|
if (listPoliciesRegulationsTemp != null && listPoliciesRegulationsTemp.Count > 0)
|
||||||
|
{
|
||||||
|
return listPoliciesRegulationsTemp.Where(p => p.ID == id).Select(p => new PoliciesRegulation
|
||||||
{
|
{
|
||||||
ID = p.ID,
|
ID = p.ID,
|
||||||
Area = p.Area,
|
Area = p.Area,
|
||||||
Contents = p.Contents,
|
Contents = p.Contents,
|
||||||
PublicTime = p.PublicTime,
|
PublicTime = p.PublicTime.HasValue ? p.PublicTime.Value.ToString("yyyy-MM-dd") : string.Empty,
|
||||||
Title = p.Title
|
Title = p.Title
|
||||||
}).FirstAsync();
|
}).First();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var asd = db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(p => p.ID == id).First();
|
||||||
|
var entity = db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(p => p.ID == id).Select(p => new PoliciesRegulation
|
||||||
|
{
|
||||||
|
ID = p.ID,
|
||||||
|
Area = p.Area,
|
||||||
|
Contents = p.Contents,
|
||||||
|
PublicTime = p.PublicTime.ToString(),
|
||||||
|
Title = p.Title
|
||||||
|
}).First();
|
||||||
|
entity.PublicTime = Convert.ToDateTime(entity.PublicTime).ToString("yyyy-MM-dd");
|
||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 协议详细
|
/// 协议详细
|
||||||
@@ -314,6 +413,12 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
var ticket = args.GetJsonValue("ticket", isThrowExp: true);
|
var ticket = args.GetJsonValue("ticket", isThrowExp: true);
|
||||||
var id = args.GetJsonGuidValue("id", isThrowExp: true);
|
var id = args.GetJsonGuidValue("id", isThrowExp: true);
|
||||||
JObject userInfoObj = GetInfoByTicket(ticket);
|
JObject userInfoObj = GetInfoByTicket(ticket);
|
||||||
|
//var cachedata=_cache.Get($"CacheData-ResidentialAgreement");
|
||||||
|
//if (!string.IsNullOrWhiteSpace(cachedata))
|
||||||
|
//{
|
||||||
|
// var listBcxy = JSON.Deserialize<List<Bcxy>>(cachedata);
|
||||||
|
// XyFile= listBcxy.Where(p => p.Id == id.ToString()).Select(p => new {ID= p.Id, XyFile=p.XyFile }).First();
|
||||||
|
//}
|
||||||
var XyFile = "";
|
var XyFile = "";
|
||||||
//住宅
|
//住宅
|
||||||
var entity_zz = db.Queryable<Nbzs.Entity.ResidentialAgreement>().Where(p => p.ID == id).Select(p => new { p.ID, p.XyFile }).First();
|
var entity_zz = db.Queryable<Nbzs.Entity.ResidentialAgreement>().Where(p => p.ID == id).Select(p => new { p.ID, p.XyFile }).First();
|
||||||
@@ -341,7 +446,7 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
|
|
||||||
var filePath = GetCurrentRootPath() + XyFile;
|
var filePath = GetCurrentRootPath() + XyFile;
|
||||||
var pdfFile = new FileInfo(filePath);
|
var pdfFile = new FileInfo(filePath);
|
||||||
if (File.Exists(pdfFile.Directory + "\\lock"))
|
if (File.Exists(pdfFile.Directory + "\\" + pdfFile.Name + ".lock"))
|
||||||
{
|
{
|
||||||
var picCount = pdfFile.Directory.GetFiles(pdfFile.Name + "-*.jpg").Length;
|
var picCount = pdfFile.Directory.GetFiles(pdfFile.Name + "-*.jpg").Length;
|
||||||
for (int i = 0; i < picCount; i++)
|
for (int i = 0; i < picCount; i++)
|
||||||
@@ -369,13 +474,13 @@ namespace Ewide.NbzsZheliban.Service
|
|||||||
pics.Add(current_domain + XyFile + "-" + i + ".jpg");
|
pics.Add(current_domain + XyFile + "-" + i + ".jpg");
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
{
|
{
|
||||||
File.WriteAllText(pdfFile.Directory.FullName + "\\lock", "lock");
|
File.WriteAllText(pdfFile.Directory.FullName + "\\" + pdfFile.Name + ".lock", pdfFile.Name + ".lock");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
//throw Oops.Oh(ex.Message);
|
throw Oops.Oh(ex.Message + ex.StackTrace);
|
||||||
throw Oops.Oh(-2002, "无附件文件[" + nbzs_domain + XyFile + "]");
|
throw Oops.Oh(-2002, "无附件文件[" + nbzs_domain + XyFile + "]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Ewide.NbzsZheliban.Tools
|
|
||||||
{
|
|
||||||
public class Class1
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
17
Ewide.NbzsZheliban/Tools/Common.cs
Normal file
17
Ewide.NbzsZheliban/Tools/Common.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
using Furion;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Ewide.NbzsZheliban.Tools
|
||||||
|
{
|
||||||
|
public class Common
|
||||||
|
{
|
||||||
|
public static string GetZlbSecretKey()
|
||||||
|
{
|
||||||
|
return App.GetConfig<string>("ZlbSecretKey");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -48,6 +48,47 @@ namespace Ewide.NbzsZheliban.Tools
|
|||||||
Stream s = response.GetResponseStream();
|
Stream s = response.GetResponseStream();
|
||||||
StreamReader sr = new StreamReader(s);
|
StreamReader sr = new StreamReader(s);
|
||||||
|
|
||||||
|
strValue = sr.ReadToEnd();
|
||||||
|
return strValue;
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// 请求网页地址
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="url">网页地址</param>
|
||||||
|
/// <param name="param">参数</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static string CallUrl_xwwwformurlencoded(string url, string param)
|
||||||
|
{
|
||||||
|
//创建一个HTTP请求
|
||||||
|
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
|
||||||
|
//Post请求方式
|
||||||
|
request.Method = "POST";
|
||||||
|
//内容类型
|
||||||
|
request.ContentType = "application/x-www-form-urlencoded";
|
||||||
|
//request.ContentType = "application/json;charset=utf-8";
|
||||||
|
//byte[] bs = Encoding.ASCII.GetBytes(param); //参数转化为ascii码
|
||||||
|
byte[] bs = Encoding.UTF8.GetBytes(param);
|
||||||
|
request.ContentLength = bs.Length;
|
||||||
|
using (Stream reqStream = request.GetRequestStream())
|
||||||
|
{
|
||||||
|
reqStream.Write(bs, 0, bs.Length);
|
||||||
|
}
|
||||||
|
|
||||||
|
String strValue = "";//strValue为http响应所返回的字符流
|
||||||
|
HttpWebResponse response;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//获得响应流
|
||||||
|
response = (HttpWebResponse)request.GetResponse();
|
||||||
|
}
|
||||||
|
catch (WebException ex)
|
||||||
|
{
|
||||||
|
response = ex.Response as HttpWebResponse;
|
||||||
|
}
|
||||||
|
|
||||||
|
Stream s = response.GetResponseStream();
|
||||||
|
StreamReader sr = new StreamReader(s);
|
||||||
|
|
||||||
strValue = sr.ReadToEnd();
|
strValue = sr.ReadToEnd();
|
||||||
return strValue;
|
return strValue;
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,270 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Authentication.JwtBearer</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
JWT 授权服务拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="authenticationBuilder"></param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize">启动全局授权</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions})">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure">授权配置</param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TAuthorizationHandler"></typeparam>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure"></param>
|
|
||||||
<param name="tokenValidationParameters"></param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.ConfigureJWTOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.MultiClaimsDictionaryComparer">
|
|
||||||
<summary>
|
|
||||||
解决 Claims 身份重复键问题
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.Equals(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
设置字符串永不相等
|
|
||||||
</summary>
|
|
||||||
<param name="x"></param>
|
|
||||||
<param name="y"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.GetHashCode(System.String)">
|
|
||||||
<summary>
|
|
||||||
返回字符串 hashCode
|
|
||||||
</summary>
|
|
||||||
<param name="obj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.JWTSettingsOptions">
|
|
||||||
<summary>
|
|
||||||
Jwt 配置
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
验证签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.IssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuer">
|
|
||||||
<summary>
|
|
||||||
验证签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidIssuer">
|
|
||||||
<summary>
|
|
||||||
签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateAudience">
|
|
||||||
<summary>
|
|
||||||
验证签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidAudience">
|
|
||||||
<summary>
|
|
||||||
签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateLifetime">
|
|
||||||
<summary>
|
|
||||||
验证生存期
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ClockSkew">
|
|
||||||
<summary>
|
|
||||||
过期时间容错值,解决服务器端时间不同步问题(秒)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ExpiredTime">
|
|
||||||
<summary>
|
|
||||||
过期时间(分钟)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.Algorithm">
|
|
||||||
<summary>
|
|
||||||
加密算法
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.DataEncryption.JWTEncryption">
|
|
||||||
<summary>
|
|
||||||
JWT 加解密
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GenerateRefreshToken(System.String,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
生成刷新 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<param name="expiredTime">刷新 Token 有效期(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Exchange(System.String,System.String,System.Nullable{System.Int64},System.Int64)">
|
|
||||||
<summary>
|
|
||||||
通过过期Token 和 刷新Token 换取新的 Token
|
|
||||||
</summary>
|
|
||||||
<param name="expiredToken"></param>
|
|
||||||
<param name="refreshToken"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<param name="clockSkew">刷新token容差值,秒做单位</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.AutoRefreshToken(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext,Microsoft.AspNetCore.Http.DefaultHttpContext,System.Nullable{System.Int64},System.Int32,System.String,System.Int64)">
|
|
||||||
<summary>
|
|
||||||
自动刷新 Token 信息
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="expiredTime">新 Token 过期时间(分钟)</param>
|
|
||||||
<param name="refreshTokenExpiredTime">新刷新 Token 有效期(分钟)</param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<param name="clockSkew"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Validate(System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ValidateJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,Microsoft.IdentityModel.JsonWebTokens.JsonWebToken@,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="token"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ReadJwtToken(System.String)">
|
|
||||||
<summary>
|
|
||||||
读取 Token,不含验证
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
获取 JWT Bearer Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJWTSettings">
|
|
||||||
<summary>
|
|
||||||
获取 JWT 配置
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CreateTokenValidationParameters(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
生成Token验证参数
|
|
||||||
</summary>
|
|
||||||
<param name="jwtSettings"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CombinePayload(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
组合 Claims 负荷
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间,单位:分钟</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.SetDefaultJwtSettings(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
设置默认 Jwt 配置
|
|
||||||
</summary>
|
|
||||||
<param name="options"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetCurrentHttpContext">
|
|
||||||
<summary>
|
|
||||||
获取当前的 HttpContext
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="F:Furion.DataEncryption.JWTEncryption.StationaryClaimTypes">
|
|
||||||
<summary>
|
|
||||||
固定的 Claim 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.DataEncryption.JWTEncryption.FrameworkApp">
|
|
||||||
<summary>
|
|
||||||
框架 App 静态类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetFrameworkContext(System.Reflection.Assembly)">
|
|
||||||
<summary>
|
|
||||||
获取框架上下文
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,582 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.Dapper</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
Dapper 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions.AddDapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
添加 Dapper 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="connectionString">连接字符串</param>
|
|
||||||
<param name="sqlProvider"> <see cref="T:Dapper.SqlProvider"/> 类型</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.SqlProvider">
|
|
||||||
<summary>
|
|
||||||
Sql 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlServer">
|
|
||||||
<summary>
|
|
||||||
SqlServer 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Sqlite">
|
|
||||||
<summary>
|
|
||||||
Sqlite 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.MySql">
|
|
||||||
<summary>
|
|
||||||
MySql 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Npgsql">
|
|
||||||
<summary>
|
|
||||||
PostgreSQL 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Oracle">
|
|
||||||
<summary>
|
|
||||||
Oracle 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Firebird">
|
|
||||||
<summary>
|
|
||||||
Firebird 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlProviderDbConnectionTypeCollection">
|
|
||||||
<summary>
|
|
||||||
数据库提供器连接对象类型集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.#cctor">
|
|
||||||
<summary>
|
|
||||||
静态构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.GetDbConnectionType(System.String)">
|
|
||||||
<summary>
|
|
||||||
获取数据库连接对象类型
|
|
||||||
</summary>
|
|
||||||
<param name="sqlProvider"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._db">
|
|
||||||
<summary>
|
|
||||||
数据库连接对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,960 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.SqlSugar</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:SqlSugar.PagedQueryableExtensions">
|
|
||||||
<summary>
|
|
||||||
分页拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedList``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedListAsync``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlProfiler">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 打印SQL语句参数格式化帮助类
|
|
||||||
【使用方式】:在需要打印SQL语句的地方,如 Startup,将
|
|
||||||
App.PrintToMiniProfiler("SqlSugar1", "Info", sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
|
|
||||||
替换为
|
|
||||||
App.PrintToMiniProfiler("SqlSugar", "Info", SqlProfiler.ParameterFormat(sql, pars));
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,SqlSugar.SugarParameter[])">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,System.Object)">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarPagedList`1">
|
|
||||||
<summary>
|
|
||||||
分页泛型集合
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageIndex">
|
|
||||||
<summary>
|
|
||||||
页码
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageSize">
|
|
||||||
<summary>
|
|
||||||
页容量
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalCount">
|
|
||||||
<summary>
|
|
||||||
总条数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalPages">
|
|
||||||
<summary>
|
|
||||||
总页数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.Items">
|
|
||||||
<summary>
|
|
||||||
当前页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasPrevPages">
|
|
||||||
<summary>
|
|
||||||
是否有上一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasNextPages">
|
|
||||||
<summary>
|
|
||||||
是否有下一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.PagedModel">
|
|
||||||
<summary>
|
|
||||||
分页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity"></typeparam>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.#ctor(System.IServiceProvider,SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider">服务提供器</param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository`1._sqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.#ctor(SqlSugar.ISqlSugarRepository)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarRepository"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="insertObj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkAttribute">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元配置特性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor(System.Data.IsolationLevel)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>支持传入事务隔离级别 <see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/> 参数值</para>
|
|
||||||
</remarks>
|
|
||||||
<param name="isolationLevel">事务隔离级别</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel">
|
|
||||||
<summary>
|
|
||||||
事务隔离级别
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>默认:<see cref="F:System.Data.IsolationLevel.ReadCommitted"/>,参见:<see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/></para>
|
|
||||||
<para>说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作</para>
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkFilter">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元拦截器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter.FilterOrder">
|
|
||||||
<summary>
|
|
||||||
过滤器排序
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkFilter.Order">
|
|
||||||
<summary>
|
|
||||||
排序属性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter._sqlSugarClient">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.#ctor(SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarClient"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)">
|
|
||||||
<summary>
|
|
||||||
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="next"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig,System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="config"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig[],System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="configs"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,29 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Logging.Serilog</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.Hosting.SerilogHostingExtensions">
|
|
||||||
<summary>
|
|
||||||
Serilog 日志拓展
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="hostBuilder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns>IWebHostBuilder</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="builder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.ObjectMapper.Mapster</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
对象映射拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions.AddObjectMapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Reflection.Assembly[])">
|
|
||||||
<summary>
|
|
||||||
添加对象映射
|
|
||||||
</summary>
|
|
||||||
<param name="services">服务集合</param>
|
|
||||||
<param name="assemblies">扫描的程序集</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
|||||||
namespace Ewide.Core.Service
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 数据库表列表参数
|
|
||||||
/// </summary>
|
|
||||||
public class TableOutput
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 表名(字母形式的)
|
|
||||||
/// </summary>
|
|
||||||
public string TableName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 创建时间
|
|
||||||
/// </summary>
|
|
||||||
public string CreateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 更新时间
|
|
||||||
/// </summary>
|
|
||||||
public string UpdateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 表名称描述(注释)(功能名)
|
|
||||||
/// </summary>
|
|
||||||
public string TableComment { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
{
|
|
||||||
"SpecificationDocumentSettings": {
|
|
||||||
"DocumentTitle": "Ewide",
|
|
||||||
"DocExpansionState": "None",
|
|
||||||
"GroupOpenApiInfos": [
|
|
||||||
{
|
|
||||||
"Group": "Default",
|
|
||||||
"Title": "Admin.NET通用权限管理平台",
|
|
||||||
"Description": "前后端分离架构,开箱即用,紧随前沿技术。<br/>后台.NET5平台基于Furion框架,前端基于XiaoNuo生态技术框架的vue版本。<br/><a href='https://dotnetchina.gitee.io/furion/'>Furion框架,让 .NET 开发更简单,更通用,更流行</a><br/><a href='https://gitee.com/xiaonuobase/xiaonuo-vue/'>XiaoNuo前端框架采用Vue2.x + AntDesign Vue pro1.x + Axios</a>",
|
|
||||||
"Version": "1.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Group": "HouseBusiness",
|
|
||||||
"Title": "城镇房屋业务接口",
|
|
||||||
"Description": "城镇房屋业务接口</a>",
|
|
||||||
"Version": "1.0.1"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"JWTSettings": {
|
|
||||||
"ValidateIssuerSigningKey": true, // 是否验证密钥,bool 类型,默认true
|
|
||||||
"IssuerSigningKey": "3c1cbc3f546eda35168c3aa3cb91780fbe703f0996c6d123ea96dc85c70bbc0a", // 密钥,string 类型,必须是复杂密钥,长度大于16
|
|
||||||
"ValidateIssuer": true, // 是否验证签发方,bool 类型,默认true
|
|
||||||
"ValidIssuer": "ewide", // 签发方,string 类型
|
|
||||||
"ValidateAudience": true, // 是否验证签收方,bool 类型,默认true
|
|
||||||
"ValidAudience": "ewide", // 签收方,string 类型
|
|
||||||
"ValidateLifetime": true, // 是否验证过期时间,bool 类型,默认true,建议true
|
|
||||||
"ExpiredTime": 1440, // 过期时间,long 类型,单位分钟,默认20分钟
|
|
||||||
"ClockSkew": 5 // 过期时间容错值,long 类型,单位秒,默认5秒
|
|
||||||
},
|
|
||||||
"WriteXmlPath": {
|
|
||||||
"SeedData": "SeedDataXml",
|
|
||||||
"DataBase": "DataBaseXml",
|
|
||||||
"ReadSelect": "SeedData" // SeedData 和 DataBase 两个中间选
|
|
||||||
},
|
|
||||||
"RSA": {
|
|
||||||
"publickey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>",
|
|
||||||
"privatekey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent><P>7yKLJO9dobe7pNW3ob+Vse8kvlA+PObDrZNqFxUTLyXoAeHDnwz3BjJ2EVUPNJHV5F1/KPLTvADIjDrdB1qcbw==</P><Q>w9ZK0SHBddtE91skFFS72YDmxzmXumSuUyREStVul9ke0oU2HjcZA915bmR0Zrh1RzO3y1w9zXVn+GdZGjyd6w==</Q><DP>ncA67E2fhcwv0+hMcD5zYOLyaT2EISbWFQ43ISz879BgwcUOCEFEP+lP69Uh57sAz9pBxWCS/uXBZoh6QJysrw==</DP><DQ>vbC8F4YS1g3l55Koh+jra+qnnyHyDeGn2XCvlazWys7MRC40FWBZIp1MGdnDxhu1vZoi1SAr3O90HfA9JmTAsQ==</DQ><InverseQ>00v2vMCcgXy78eMby7R6zfZzacVnVFO2WeyxYF7pjrXYYP+C4JSJkWpy6JGLWbgZrK8HAuRguJmdRi8K2KiYWg==</InverseQ><D>rV3nb9nmwQDMGMrI2GyN30uivygfFj0TdgK8Tb1aqPzu1yRT46M4yXmuhkTiW7nxp+iANGssIx5+3Ch4gRj+r6BgBPldWNErK95a2v2Ae1+EzfVf21ybguBYeUVnV9c8qwoodZSVOajZapOgoS6s5TEOxHWRcF22AiFuaD1Tl90=</D></RSAKeyValue>"
|
|
||||||
},
|
|
||||||
"Mail": {
|
|
||||||
"Account": "983235253@qq.com",
|
|
||||||
"PassWord": "izknskjprlusbehf", //qq邮箱授权码
|
|
||||||
"Subject": "宽易邮箱发送测试",
|
|
||||||
"Host": "smtp.qq.com" //邮箱服务器地址
|
|
||||||
},
|
|
||||||
"SmsHelper": {
|
|
||||||
"Aliyun_AccessKey": "LTAI4GHRRNkDXKxpk19A3P1A",
|
|
||||||
"Aliyun_AccessSecret": "cFyvfufSSa2b6BiQj9NZ1edYkJStNM",
|
|
||||||
"Aliyun_Smscode_SignName": "ABC商城",
|
|
||||||
"Aliyun_Smscode_TemplateCode": "SMS_204970706"
|
|
||||||
},
|
|
||||||
"Cache": {
|
|
||||||
"CacheType": "MemoryCache", // RedisCache
|
|
||||||
"RedisConnectionString": "127.0.0.1:6379,password=,defaultDatabase=2"
|
|
||||||
},
|
|
||||||
"SnowId": {
|
|
||||||
"WorkerId": "1" // 取值范围0~63,默认1
|
|
||||||
},
|
|
||||||
"OAuth": {
|
|
||||||
"Wechat": {
|
|
||||||
"app_id": "wx2959fdd3abc05362",
|
|
||||||
"app_key": "829f65b2be0652bcd50ea8cb820fd7fa",
|
|
||||||
"redirect_uri": "http://127.0.0.1:56868/oauth/wechatcallback",
|
|
||||||
"scope": "snsapi_userinfo"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"UploadFile": {
|
|
||||||
// 头像
|
|
||||||
"Avatar": {
|
|
||||||
"path": "Upload/Avatar",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 文档
|
|
||||||
"Document": {
|
|
||||||
"path": "Upload/Document",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
},
|
|
||||||
// 商店
|
|
||||||
"Shop": {
|
|
||||||
"path": "Upload/Shop",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 默认
|
|
||||||
"Default": {
|
|
||||||
"path": "Upload/Default",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"CoreSettings": {
|
|
||||||
"DefalutRoute": [
|
|
||||||
"getLoginUser",
|
|
||||||
"logout",
|
|
||||||
"sysDictType:dropDown",
|
|
||||||
"sysDictType:dropDowns",
|
|
||||||
"sysFileInfo:upload",
|
|
||||||
"sysFileInfo:download",
|
|
||||||
"sysFileInfo:detail",
|
|
||||||
"sysFileInfo:preview",
|
|
||||||
"sysUser:updateInfo",
|
|
||||||
"sysUser:updatePwd",
|
|
||||||
"sysUser:updateAvatar",
|
|
||||||
"sysUser:checkBindcode",
|
|
||||||
"sysUser:getPwdRule",
|
|
||||||
"sysUser:sendCode",
|
|
||||||
"sysNotice:received",
|
|
||||||
"sysNotice:unread",
|
|
||||||
"sysNotice:detail",
|
|
||||||
"houseLog:list",
|
|
||||||
"houseLog:listByInfoId",
|
|
||||||
"houseLog:listByTaskId"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
"SimplePassword": {
|
|
||||||
"Pattern": "(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])(?=.*[^a-zA-Z0-9]){8,}",
|
|
||||||
"Descriptions": "密码中必须包含大小字母、数字、特称字符,至少8个字符"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,270 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Authentication.JwtBearer</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
JWT 授权服务拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="authenticationBuilder"></param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize">启动全局授权</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions})">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure">授权配置</param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TAuthorizationHandler"></typeparam>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure"></param>
|
|
||||||
<param name="tokenValidationParameters"></param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.ConfigureJWTOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.MultiClaimsDictionaryComparer">
|
|
||||||
<summary>
|
|
||||||
解决 Claims 身份重复键问题
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.Equals(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
设置字符串永不相等
|
|
||||||
</summary>
|
|
||||||
<param name="x"></param>
|
|
||||||
<param name="y"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.GetHashCode(System.String)">
|
|
||||||
<summary>
|
|
||||||
返回字符串 hashCode
|
|
||||||
</summary>
|
|
||||||
<param name="obj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.JWTSettingsOptions">
|
|
||||||
<summary>
|
|
||||||
Jwt 配置
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
验证签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.IssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuer">
|
|
||||||
<summary>
|
|
||||||
验证签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidIssuer">
|
|
||||||
<summary>
|
|
||||||
签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateAudience">
|
|
||||||
<summary>
|
|
||||||
验证签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidAudience">
|
|
||||||
<summary>
|
|
||||||
签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateLifetime">
|
|
||||||
<summary>
|
|
||||||
验证生存期
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ClockSkew">
|
|
||||||
<summary>
|
|
||||||
过期时间容错值,解决服务器端时间不同步问题(秒)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ExpiredTime">
|
|
||||||
<summary>
|
|
||||||
过期时间(分钟)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.Algorithm">
|
|
||||||
<summary>
|
|
||||||
加密算法
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.DataEncryption.JWTEncryption">
|
|
||||||
<summary>
|
|
||||||
JWT 加解密
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GenerateRefreshToken(System.String,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
生成刷新 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<param name="expiredTime">刷新 Token 有效期(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Exchange(System.String,System.String,System.Nullable{System.Int64},System.Int64)">
|
|
||||||
<summary>
|
|
||||||
通过过期Token 和 刷新Token 换取新的 Token
|
|
||||||
</summary>
|
|
||||||
<param name="expiredToken"></param>
|
|
||||||
<param name="refreshToken"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<param name="clockSkew">刷新token容差值,秒做单位</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.AutoRefreshToken(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext,Microsoft.AspNetCore.Http.DefaultHttpContext,System.Nullable{System.Int64},System.Int32,System.String,System.Int64)">
|
|
||||||
<summary>
|
|
||||||
自动刷新 Token 信息
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="expiredTime">新 Token 过期时间(分钟)</param>
|
|
||||||
<param name="refreshTokenExpiredTime">新刷新 Token 有效期(分钟)</param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<param name="clockSkew"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Validate(System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ValidateJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,Microsoft.IdentityModel.JsonWebTokens.JsonWebToken@,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="token"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ReadJwtToken(System.String)">
|
|
||||||
<summary>
|
|
||||||
读取 Token,不含验证
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
获取 JWT Bearer Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJWTSettings">
|
|
||||||
<summary>
|
|
||||||
获取 JWT 配置
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CreateTokenValidationParameters(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
生成Token验证参数
|
|
||||||
</summary>
|
|
||||||
<param name="jwtSettings"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CombinePayload(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
组合 Claims 负荷
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间,单位:分钟</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.SetDefaultJwtSettings(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
设置默认 Jwt 配置
|
|
||||||
</summary>
|
|
||||||
<param name="options"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetCurrentHttpContext">
|
|
||||||
<summary>
|
|
||||||
获取当前的 HttpContext
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="F:Furion.DataEncryption.JWTEncryption.StationaryClaimTypes">
|
|
||||||
<summary>
|
|
||||||
固定的 Claim 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.DataEncryption.JWTEncryption.FrameworkApp">
|
|
||||||
<summary>
|
|
||||||
框架 App 静态类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetFrameworkContext(System.Reflection.Assembly)">
|
|
||||||
<summary>
|
|
||||||
获取框架上下文
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,582 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.Dapper</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
Dapper 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions.AddDapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
添加 Dapper 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="connectionString">连接字符串</param>
|
|
||||||
<param name="sqlProvider"> <see cref="T:Dapper.SqlProvider"/> 类型</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.SqlProvider">
|
|
||||||
<summary>
|
|
||||||
Sql 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlServer">
|
|
||||||
<summary>
|
|
||||||
SqlServer 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Sqlite">
|
|
||||||
<summary>
|
|
||||||
Sqlite 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.MySql">
|
|
||||||
<summary>
|
|
||||||
MySql 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Npgsql">
|
|
||||||
<summary>
|
|
||||||
PostgreSQL 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Oracle">
|
|
||||||
<summary>
|
|
||||||
Oracle 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Firebird">
|
|
||||||
<summary>
|
|
||||||
Firebird 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlProviderDbConnectionTypeCollection">
|
|
||||||
<summary>
|
|
||||||
数据库提供器连接对象类型集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.#cctor">
|
|
||||||
<summary>
|
|
||||||
静态构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.GetDbConnectionType(System.String)">
|
|
||||||
<summary>
|
|
||||||
获取数据库连接对象类型
|
|
||||||
</summary>
|
|
||||||
<param name="sqlProvider"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._db">
|
|
||||||
<summary>
|
|
||||||
数据库连接对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,960 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.SqlSugar</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:SqlSugar.PagedQueryableExtensions">
|
|
||||||
<summary>
|
|
||||||
分页拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedList``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedListAsync``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlProfiler">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 打印SQL语句参数格式化帮助类
|
|
||||||
【使用方式】:在需要打印SQL语句的地方,如 Startup,将
|
|
||||||
App.PrintToMiniProfiler("SqlSugar1", "Info", sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
|
|
||||||
替换为
|
|
||||||
App.PrintToMiniProfiler("SqlSugar", "Info", SqlProfiler.ParameterFormat(sql, pars));
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,SqlSugar.SugarParameter[])">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,System.Object)">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarPagedList`1">
|
|
||||||
<summary>
|
|
||||||
分页泛型集合
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageIndex">
|
|
||||||
<summary>
|
|
||||||
页码
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageSize">
|
|
||||||
<summary>
|
|
||||||
页容量
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalCount">
|
|
||||||
<summary>
|
|
||||||
总条数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalPages">
|
|
||||||
<summary>
|
|
||||||
总页数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.Items">
|
|
||||||
<summary>
|
|
||||||
当前页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasPrevPages">
|
|
||||||
<summary>
|
|
||||||
是否有上一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasNextPages">
|
|
||||||
<summary>
|
|
||||||
是否有下一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.PagedModel">
|
|
||||||
<summary>
|
|
||||||
分页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity"></typeparam>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.#ctor(System.IServiceProvider,SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider">服务提供器</param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository`1._sqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.#ctor(SqlSugar.ISqlSugarRepository)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarRepository"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="insertObj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkAttribute">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元配置特性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor(System.Data.IsolationLevel)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>支持传入事务隔离级别 <see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/> 参数值</para>
|
|
||||||
</remarks>
|
|
||||||
<param name="isolationLevel">事务隔离级别</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel">
|
|
||||||
<summary>
|
|
||||||
事务隔离级别
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>默认:<see cref="F:System.Data.IsolationLevel.ReadCommitted"/>,参见:<see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/></para>
|
|
||||||
<para>说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作</para>
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkFilter">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元拦截器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter.FilterOrder">
|
|
||||||
<summary>
|
|
||||||
过滤器排序
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkFilter.Order">
|
|
||||||
<summary>
|
|
||||||
排序属性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter._sqlSugarClient">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.#ctor(SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarClient"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)">
|
|
||||||
<summary>
|
|
||||||
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="next"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig,System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="config"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig[],System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="configs"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,29 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Logging.Serilog</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.Hosting.SerilogHostingExtensions">
|
|
||||||
<summary>
|
|
||||||
Serilog 日志拓展
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="hostBuilder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns>IWebHostBuilder</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="builder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.ObjectMapper.Mapster</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
对象映射拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions.AddObjectMapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Reflection.Assembly[])">
|
|
||||||
<summary>
|
|
||||||
添加对象映射
|
|
||||||
</summary>
|
|
||||||
<param name="services">服务集合</param>
|
|
||||||
<param name="assemblies">扫描的程序集</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
|||||||
namespace Ewide.Core.Service
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 数据库表列表参数
|
|
||||||
/// </summary>
|
|
||||||
public class TableOutput
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 表名(字母形式的)
|
|
||||||
/// </summary>
|
|
||||||
public string TableName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 创建时间
|
|
||||||
/// </summary>
|
|
||||||
public string CreateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 更新时间
|
|
||||||
/// </summary>
|
|
||||||
public string UpdateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 表名称描述(注释)(功能名)
|
|
||||||
/// </summary>
|
|
||||||
public string TableComment { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
{
|
|
||||||
"SpecificationDocumentSettings": {
|
|
||||||
"DocumentTitle": "Ewide",
|
|
||||||
"DocExpansionState": "None",
|
|
||||||
"GroupOpenApiInfos": [
|
|
||||||
{
|
|
||||||
"Group": "Default",
|
|
||||||
"Title": "Admin.NET通用权限管理平台",
|
|
||||||
"Description": "前后端分离架构,开箱即用,紧随前沿技术。<br/>后台.NET5平台基于Furion框架,前端基于XiaoNuo生态技术框架的vue版本。<br/><a href='https://dotnetchina.gitee.io/furion/'>Furion框架,让 .NET 开发更简单,更通用,更流行</a><br/><a href='https://gitee.com/xiaonuobase/xiaonuo-vue/'>XiaoNuo前端框架采用Vue2.x + AntDesign Vue pro1.x + Axios</a>",
|
|
||||||
"Version": "1.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Group": "HouseBusiness",
|
|
||||||
"Title": "城镇房屋业务接口",
|
|
||||||
"Description": "城镇房屋业务接口</a>",
|
|
||||||
"Version": "1.0.1"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"JWTSettings": {
|
|
||||||
"ValidateIssuerSigningKey": true, // 是否验证密钥,bool 类型,默认true
|
|
||||||
"IssuerSigningKey": "3c1cbc3f546eda35168c3aa3cb91780fbe703f0996c6d123ea96dc85c70bbc0a", // 密钥,string 类型,必须是复杂密钥,长度大于16
|
|
||||||
"ValidateIssuer": true, // 是否验证签发方,bool 类型,默认true
|
|
||||||
"ValidIssuer": "ewide", // 签发方,string 类型
|
|
||||||
"ValidateAudience": true, // 是否验证签收方,bool 类型,默认true
|
|
||||||
"ValidAudience": "ewide", // 签收方,string 类型
|
|
||||||
"ValidateLifetime": true, // 是否验证过期时间,bool 类型,默认true,建议true
|
|
||||||
"ExpiredTime": 1440, // 过期时间,long 类型,单位分钟,默认20分钟
|
|
||||||
"ClockSkew": 5 // 过期时间容错值,long 类型,单位秒,默认5秒
|
|
||||||
},
|
|
||||||
"WriteXmlPath": {
|
|
||||||
"SeedData": "SeedDataXml",
|
|
||||||
"DataBase": "DataBaseXml",
|
|
||||||
"ReadSelect": "SeedData" // SeedData 和 DataBase 两个中间选
|
|
||||||
},
|
|
||||||
"RSA": {
|
|
||||||
"publickey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>",
|
|
||||||
"privatekey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent><P>7yKLJO9dobe7pNW3ob+Vse8kvlA+PObDrZNqFxUTLyXoAeHDnwz3BjJ2EVUPNJHV5F1/KPLTvADIjDrdB1qcbw==</P><Q>w9ZK0SHBddtE91skFFS72YDmxzmXumSuUyREStVul9ke0oU2HjcZA915bmR0Zrh1RzO3y1w9zXVn+GdZGjyd6w==</Q><DP>ncA67E2fhcwv0+hMcD5zYOLyaT2EISbWFQ43ISz879BgwcUOCEFEP+lP69Uh57sAz9pBxWCS/uXBZoh6QJysrw==</DP><DQ>vbC8F4YS1g3l55Koh+jra+qnnyHyDeGn2XCvlazWys7MRC40FWBZIp1MGdnDxhu1vZoi1SAr3O90HfA9JmTAsQ==</DQ><InverseQ>00v2vMCcgXy78eMby7R6zfZzacVnVFO2WeyxYF7pjrXYYP+C4JSJkWpy6JGLWbgZrK8HAuRguJmdRi8K2KiYWg==</InverseQ><D>rV3nb9nmwQDMGMrI2GyN30uivygfFj0TdgK8Tb1aqPzu1yRT46M4yXmuhkTiW7nxp+iANGssIx5+3Ch4gRj+r6BgBPldWNErK95a2v2Ae1+EzfVf21ybguBYeUVnV9c8qwoodZSVOajZapOgoS6s5TEOxHWRcF22AiFuaD1Tl90=</D></RSAKeyValue>"
|
|
||||||
},
|
|
||||||
"Mail": {
|
|
||||||
"Account": "983235253@qq.com",
|
|
||||||
"PassWord": "izknskjprlusbehf", //qq邮箱授权码
|
|
||||||
"Subject": "宽易邮箱发送测试",
|
|
||||||
"Host": "smtp.qq.com" //邮箱服务器地址
|
|
||||||
},
|
|
||||||
"SmsHelper": {
|
|
||||||
"Aliyun_AccessKey": "LTAI4GHRRNkDXKxpk19A3P1A",
|
|
||||||
"Aliyun_AccessSecret": "cFyvfufSSa2b6BiQj9NZ1edYkJStNM",
|
|
||||||
"Aliyun_Smscode_SignName": "ABC商城",
|
|
||||||
"Aliyun_Smscode_TemplateCode": "SMS_204970706"
|
|
||||||
},
|
|
||||||
"Cache": {
|
|
||||||
"CacheType": "MemoryCache", // RedisCache
|
|
||||||
"RedisConnectionString": "127.0.0.1:6379,password=,defaultDatabase=2"
|
|
||||||
},
|
|
||||||
"SnowId": {
|
|
||||||
"WorkerId": "1" // 取值范围0~63,默认1
|
|
||||||
},
|
|
||||||
"OAuth": {
|
|
||||||
"Wechat": {
|
|
||||||
"app_id": "wx2959fdd3abc05362",
|
|
||||||
"app_key": "829f65b2be0652bcd50ea8cb820fd7fa",
|
|
||||||
"redirect_uri": "http://127.0.0.1:56868/oauth/wechatcallback",
|
|
||||||
"scope": "snsapi_userinfo"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"UploadFile": {
|
|
||||||
// 头像
|
|
||||||
"Avatar": {
|
|
||||||
"path": "Upload/Avatar",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 文档
|
|
||||||
"Document": {
|
|
||||||
"path": "Upload/Document",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
},
|
|
||||||
// 商店
|
|
||||||
"Shop": {
|
|
||||||
"path": "Upload/Shop",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 默认
|
|
||||||
"Default": {
|
|
||||||
"path": "Upload/Default",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"CoreSettings": {
|
|
||||||
"DefalutRoute": [
|
|
||||||
"getLoginUser",
|
|
||||||
"logout",
|
|
||||||
"sysDictType:dropDown",
|
|
||||||
"sysDictType:dropDowns",
|
|
||||||
"sysFileInfo:upload",
|
|
||||||
"sysFileInfo:download",
|
|
||||||
"sysFileInfo:detail",
|
|
||||||
"sysFileInfo:preview",
|
|
||||||
"sysUser:updateInfo",
|
|
||||||
"sysUser:updatePwd",
|
|
||||||
"sysUser:updateAvatar",
|
|
||||||
"sysUser:checkBindcode",
|
|
||||||
"sysUser:getPwdRule",
|
|
||||||
"sysUser:sendCode",
|
|
||||||
"sysNotice:received",
|
|
||||||
"sysNotice:unread",
|
|
||||||
"sysNotice:detail",
|
|
||||||
"houseLog:list",
|
|
||||||
"houseLog:listByInfoId",
|
|
||||||
"houseLog:listByTaskId"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
"SimplePassword": {
|
|
||||||
"Pattern": "(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])(?=.*[^a-zA-Z0-9]){8,}",
|
|
||||||
"Descriptions": "密码中必须包含大小字母、数字、特称字符,至少8个字符"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 此代码由工具生成。
|
|
||||||
// 运行时版本:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||||
// 重新生成代码,这些更改将会丢失。
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
bda67fe14f40b15fe7bfa74fbb274fd21fb6cbb5
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net5.0
|
|
||||||
build_property.TargetPlatformMinVersion =
|
|
||||||
build_property.UsingMicrosoftNETSdkWeb =
|
|
||||||
build_property.ProjectTypeGuids =
|
|
||||||
build_property.PublishSingleFile =
|
|
||||||
build_property.IncludeAllContentForSelfExtract =
|
|
||||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
|
||||||
build_property.RootNamespace = Ewide.NbzsZheliban
|
|
||||||
build_property.ProjectDir = D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
18b81abb8b32055668d7f327591b58a7f0a2cc3f
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Service\CodeGen\Dto\TableOutput.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\applicationconfig.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.NbzsZheliban.deps.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Core.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Core.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Core.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.csproj.AssemblyReference.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.AssemblyInfoInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.AssemblyInfo.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.csproj.CopyComplete
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Nbzs.Entity.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Nbzs.Entity.pdb
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,656 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj",
|
|
||||||
"projectName": "Ewide.Nbzs.Entity",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[13.0.1, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj",
|
|
||||||
"projectName": "Ewide.NbzsZheliban",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Magick.NET-Q16-AnyCPU": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[8.3.1, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj",
|
|
||||||
"projectName": "Ewide.Core",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"CSRedisCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.6.6, )"
|
|
||||||
},
|
|
||||||
"Kendo.DynamicLinqCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.1.1, )"
|
|
||||||
},
|
|
||||||
"Portable.BouncyCastle": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[1.8.10, )"
|
|
||||||
},
|
|
||||||
"Quartz": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.3.2, )"
|
|
||||||
},
|
|
||||||
"System.Drawing.Common": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.2, )"
|
|
||||||
},
|
|
||||||
"System.Text.Encoding.CodePages": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.0, )"
|
|
||||||
},
|
|
||||||
"UAParser": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.1.46, )"
|
|
||||||
},
|
|
||||||
"aliyun-net-sdk-core": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[1.5.10, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj",
|
|
||||||
"projectName": "Furion.Extras.Authentication.JwtBearer",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Authentication.JwtBearer": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.9, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj",
|
|
||||||
"projectName": "Furion.Extras.DatabaseAccessor.Dapper",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Dapper.Contrib": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[2.0.78, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj",
|
|
||||||
"projectName": "Furion.Extras.DatabaseAccessor.SqlSugar",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"sqlSugarCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.3.8, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj",
|
|
||||||
"projectName": "Furion.Extras.Logging.Serilog",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Serilog.AspNetCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[4.1.0, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj",
|
|
||||||
"projectName": "Furion.Extras.ObjectMapper.Mapster",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Mapster": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[7.2.0, )"
|
|
||||||
},
|
|
||||||
"Mapster.DependencyInjection": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[1.0.0, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj",
|
|
||||||
"projectName": "Furion",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Furion.Extras.DependencyModel.CodeAnalysis": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[2.18.7, )"
|
|
||||||
},
|
|
||||||
"MiniProfiler.AspNetCore.Mvc": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[4.2.22, )"
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[6.1.5, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\z1303\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<SourceRoot Include="C:\Users\z1303\.nuget\packages\" />
|
|
||||||
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\z1303\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
|
||||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\z1303\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2</PkgMicrosoft_CodeAnalysis_Analyzers>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 此代码由工具生成。
|
|
||||||
// 运行时版本:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||||
// 重新生成代码,这些更改将会丢失。
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
2b86f477b8e1358f8acd0f034974c2944e2567c5
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net5.0
|
|
||||||
build_property.TargetPlatformMinVersion =
|
|
||||||
build_property.UsingMicrosoftNETSdkWeb =
|
|
||||||
build_property.ProjectTypeGuids =
|
|
||||||
build_property.PublishSingleFile =
|
|
||||||
build_property.IncludeAllContentForSelfExtract =
|
|
||||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
|
||||||
build_property.RootNamespace = Ewide.NbzsZheliban
|
|
||||||
build_property.ProjectDir = D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
8d49216a3c5aed4b88f30d5f0d3af55eeb105b22
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Service\CodeGen\Dto\TableOutput.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\applicationconfig.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.NbzsZheliban.deps.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Core.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Authentication.JwtBearer.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.Dapper.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Logging.Serilog.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.ObjectMapper.Mapster.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Core.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Core.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Authentication.JwtBearer.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Authentication.JwtBearer.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.Dapper.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.Dapper.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Logging.Serilog.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Logging.Serilog.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.ObjectMapper.Mapster.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.ObjectMapper.Mapster.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.csproj.AssemblyReference.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.AssemblyInfoInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.AssemblyInfo.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.csproj.CopyComplete
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Nbzs.Entity.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Nbzs.Entity.pdb
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,208 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "3cavSErWO4NFfmMKlUz4YgJK6Tu5ftpqX+LZxWd1jncD2ai2Uj4kko3U9JQFGx/EFblHKsXrbTlvzoOZm3oTgg==",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj",
|
|
||||||
"expectedPackageFiles": [
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\aliyun-net-sdk-core\\1.5.10\\aliyun-net-sdk-core.1.5.10.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\ben.demystifier\\0.4.1\\ben.demystifier.0.4.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\bouncycastle.netcore\\1.8.3\\bouncycastle.netcore.1.8.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\csrediscore\\3.6.6\\csrediscore.3.6.6.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\dapper\\2.0.78\\dapper.2.0.78.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\dapper.contrib\\2.0.78\\dapper.contrib.2.0.78.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\furion.extras.dependencymodel.codeanalysis\\2.18.7\\furion.extras.dependencymodel.codeanalysis.2.18.7.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\google.protobuf\\3.6.1\\google.protobuf.3.6.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4\\1.1.11\\k4os.compression.lz4.1.1.11.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4.streams\\1.1.11\\k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\kendo.dynamiclinqcore\\3.1.1\\kendo.dynamiclinqcore.3.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\magick.net-q16-anycpu\\8.3.1\\magick.net-q16-anycpu.8.3.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\magick.net.core\\8.3.1\\magick.net.core.8.3.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mapster\\7.2.0\\mapster.7.2.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mapster.dependencyinjection\\1.0.0\\mapster.dependencyinjection.1.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.9\\microsoft.aspnetcore.authentication.jwtbearer.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.9\\microsoft.aspnetcore.razor.language.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.common\\3.11.0\\microsoft.codeanalysis.common.3.11.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.11.0\\microsoft.codeanalysis.csharp.3.11.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite\\2.2.4\\microsoft.data.sqlite.2.2.4.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite.core\\2.2.4\\microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.9\\microsoft.entityframeworkcore.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.9\\microsoft.entityframeworkcore.abstractions.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.9\\microsoft.entityframeworkcore.analyzers.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.9\\microsoft.entityframeworkcore.relational.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration\\2.0.0\\microsoft.extensions.configuration.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.0.0\\microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.2\\microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.8\\microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.8\\microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\2.0.0\\microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.aspnetcore\\4.2.22\\miniprofiler.aspnetcore.4.2.22.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.aspnetcore.mvc\\4.2.22\\miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.shared\\4.2.22\\miniprofiler.shared.4.2.22.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mysql.data\\8.0.21\\mysql.data.8.0.21.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\npgsql\\4.1.3.1\\npgsql.4.1.3.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\portable.bouncycastle\\1.8.10\\portable.bouncycastle.1.8.10.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\quartz\\3.3.2\\quartz.3.3.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.aspnetcore\\4.1.0\\serilog.aspnetcore.4.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.extensions.hosting\\4.1.2\\serilog.extensions.hosting.4.1.2.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.extensions.logging\\3.0.1\\serilog.extensions.logging.3.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.formatting.compact\\1.1.0\\serilog.formatting.compact.1.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.settings.configuration\\3.1.0\\serilog.settings.configuration.3.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.console\\3.1.1\\serilog.sinks.console.3.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.file\\4.1.0\\serilog.sinks.file.4.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.bundle_green\\1.1.12\\sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.core\\1.1.12\\sqlitepclraw.core.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.linux\\1.1.12\\sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.osx\\1.1.12\\sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.v110_xp\\1.1.12\\sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3.netstandard11\\1.1.12\\sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore\\5.0.3.8\\sqlsugarcore.5.0.3.8.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\ssh.net\\2016.1.0\\ssh.net.2016.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sshnet.security.cryptography\\1.2.0\\sshnet.security.cryptography.1.2.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore\\6.1.5\\swashbuckle.aspnetcore.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.1.5\\swashbuckle.aspnetcore.swagger.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.1.5\\swashbuckle.aspnetcore.swaggergen.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.1.5\\swashbuckle.aspnetcore.swaggerui.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.tracesource\\4.0.0\\system.diagnostics.tracesource.4.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.linq.dynamic.core\\1.2.2\\system.linq.dynamic.core.1.2.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.net.nameresolution\\4.0.0\\system.net.nameresolution.4.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.text.json\\5.0.2\\system.text.json.5.0.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.0.1\\system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\uaparser\\3.1.46\\uaparser.3.1.46.nupkg.sha512"
|
|
||||||
],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
||||||
@@ -10,11 +10,11 @@
|
|||||||
],
|
],
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"transform-vue-jsx",
|
"transform-vue-jsx",
|
||||||
"transform-runtime",
|
"transform-runtime"
|
||||||
["import", {
|
/* ["import", {
|
||||||
"libraryName": "vant",
|
"libraryName": "vant",
|
||||||
"libraryDirectory": "es",
|
"libraryDirectory": "es",
|
||||||
"style": true
|
"style": true
|
||||||
}]
|
}] */
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,19 +3,46 @@
|
|||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" />
|
<meta name="viewport"
|
||||||
<title>房屋征收</title>
|
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" />
|
||||||
<script type="text/javascript" src="https://d.alicdn.com/alilog/mlog/aplus.js?id=202951085"></script>
|
<title>宁波房屋征收</title>
|
||||||
|
<script>
|
||||||
|
function getQueryString(name) {
|
||||||
|
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
|
||||||
|
var r = window.location.search.substr(1).match(reg);
|
||||||
|
if (r != null) return unescape(r[2]); return null;
|
||||||
|
}
|
||||||
|
console.log('1201-当前页面路径:' + location.href)
|
||||||
|
var sp = getQueryString('sp');
|
||||||
|
var ticket = getQueryString('ticket');
|
||||||
|
if (sp)
|
||||||
|
location.href = (sp + '&ticket=' + ticket)
|
||||||
|
//debugger
|
||||||
|
console.log('1201-url中ticket:' + ticket)
|
||||||
|
if (ticket)
|
||||||
|
window.sessionStorage.setItem('ticket', ticket)
|
||||||
|
else {
|
||||||
|
if (!window.sessionStorage.getItem('ticket')) {
|
||||||
|
// setTimeout(function () { window.close() }, 10);
|
||||||
|
location.replace('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs')
|
||||||
|
//location.replace('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs&goto=https://mapi.zjzwfw.gov.cn/web/mgop/gov-open/zj/2001833218/1.0/index.html?debug=true')
|
||||||
|
}
|
||||||
|
console.log('有ticket正常进入,' + window.sessionStorage.getItem('ticket'))
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!-- <script type="text/javascript" src="https://d.alicdn.com/alilog/mlog/aplus.js?id=202951085"></script> -->
|
||||||
<script type="text/javascript" src="//jssdk.yyhj.zjzwfw.gov.cn/jsbridge/v2.0.0/bridge.min.js"></script>
|
<script type="text/javascript" src="//jssdk.yyhj.zjzwfw.gov.cn/jsbridge/v2.0.0/bridge.min.js"></script>
|
||||||
<!-- 引入ZWJSBridge -->
|
<!-- 引入ZWJSBridge -->
|
||||||
<script type="text/javascript" src="//assets.zjzwfw.gov.cn/assets/ZWJSBridge/1.0.1/zwjsbridge.js"></script>
|
<script type="text/javascript" src="//assets.zjzwfw.gov.cn/assets/ZWJSBridge/1.0.1/zwjsbridge.js"></script>
|
||||||
|
<script type="text/javascript" src="//assets.zjzwfw.gov.cn/assets/zwlog/1.0.0/zwlog.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<!-- built files will be auto injected -->
|
<!-- built files will be auto injected -->
|
||||||
<script>
|
<script>
|
||||||
(function(w, d, s, q, i) {
|
(function (w, d, s, q, i) {
|
||||||
w[q] = w[q] || [];
|
w[q] = w[q] || [];
|
||||||
var f = d.getElementsByTagName(s)[0];
|
var f = d.getElementsByTagName(s)[0];
|
||||||
var j = d.createElement(s);
|
var j = d.createElement(s);
|
||||||
@@ -43,16 +70,19 @@
|
|||||||
arguments: ["aplus-waiting", "MAN"]
|
arguments: ["aplus-waiting", "MAN"]
|
||||||
});
|
});
|
||||||
// 单页应用路由切换后 或 在异步获取到 pv 日志所需的参数后再执行 sendPV:
|
// 单页应用路由切换后 或 在异步获取到 pv 日志所需的参数后再执行 sendPV:
|
||||||
aplus_queue.push({
|
// aplus_queue.push({
|
||||||
action: "aplus.sendPV",
|
// action: "aplus.sendPV",
|
||||||
arguments: [{
|
// arguments: [
|
||||||
is_auto: false
|
// {
|
||||||
}, {
|
// is_auto: false
|
||||||
isMini: true,
|
// },
|
||||||
miniAppId: "2001833218", //'应用开发管理平台-应用 ID
|
// {
|
||||||
miniAppName: "房屋征收"
|
// isMini: true,
|
||||||
}]
|
// miniAppId: "2001833218", //'应用开发管理平台-应用 ID
|
||||||
});
|
// miniAppName: "房屋征收"
|
||||||
|
// }
|
||||||
|
// ]
|
||||||
|
// });
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
77
FrontCode2/sunshine_levy/package - 副本.json.bak
Normal file
77
FrontCode2/sunshine_levy/package - 副本.json.bak
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"name": "sunshine_levy",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A Vue.js project",
|
||||||
|
"author": "",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
|
||||||
|
"start": "npm run dev",
|
||||||
|
"build": "node build/build.js"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@aligov/jssdk-mgop": "^3.0.0",
|
||||||
|
"axios": "^0.21.4",
|
||||||
|
"element-ui": "^2.15.6",
|
||||||
|
"es6-promise": "^4.2.8",
|
||||||
|
"html2canvas": "^1.3.2",
|
||||||
|
"js-md5": "^0.7.3",
|
||||||
|
"less": "^4.1.1",
|
||||||
|
"less-loader": "^4.1.0",
|
||||||
|
"lib-flexible": "^0.3.2",
|
||||||
|
"px2rem-loader": "^0.1.9",
|
||||||
|
"vant": "^2.12.27",
|
||||||
|
"vue": "^2.5.2",
|
||||||
|
"vue-pdf": "^4.3.0",
|
||||||
|
"vue-router": "^3.0.1",
|
||||||
|
"vuex": "^3.6.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"autoprefixer": "^7.1.2",
|
||||||
|
"babel-core": "^6.22.1",
|
||||||
|
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
||||||
|
"babel-loader": "^7.1.1",
|
||||||
|
"babel-plugin-import": "^1.13.3",
|
||||||
|
"babel-plugin-syntax-jsx": "^6.18.0",
|
||||||
|
"babel-plugin-transform-runtime": "^6.22.0",
|
||||||
|
"babel-plugin-transform-vue-jsx": "^3.5.0",
|
||||||
|
"babel-preset-env": "^1.3.2",
|
||||||
|
"babel-preset-stage-2": "^6.22.0",
|
||||||
|
"chalk": "^2.0.1",
|
||||||
|
"copy-webpack-plugin": "^4.0.1",
|
||||||
|
"css-loader": "^0.28.0",
|
||||||
|
"extract-text-webpack-plugin": "^3.0.0",
|
||||||
|
"file-loader": "^1.1.4",
|
||||||
|
"friendly-errors-webpack-plugin": "^1.6.1",
|
||||||
|
"html-webpack-plugin": "^2.30.1",
|
||||||
|
"node-notifier": "^5.1.2",
|
||||||
|
"optimize-css-assets-webpack-plugin": "^3.2.0",
|
||||||
|
"ora": "^1.2.0",
|
||||||
|
"portfinder": "^1.0.13",
|
||||||
|
"postcss-import": "^11.0.0",
|
||||||
|
"postcss-loader": "^2.0.8",
|
||||||
|
"postcss-pxtorem": "^6.0.0",
|
||||||
|
"postcss-url": "^7.2.1",
|
||||||
|
"rimraf": "^2.6.0",
|
||||||
|
"semver": "^5.3.0",
|
||||||
|
"shelljs": "^0.7.6",
|
||||||
|
"uglifyjs-webpack-plugin": "^1.1.1",
|
||||||
|
"url-loader": "^0.5.8",
|
||||||
|
"vue-loader": "^13.3.0",
|
||||||
|
"vue-style-loader": "^3.0.1",
|
||||||
|
"vue-template-compiler": "^2.5.2",
|
||||||
|
"webpack": "^3.6.0",
|
||||||
|
"webpack-bundle-analyzer": "^2.9.0",
|
||||||
|
"webpack-dev-server": "^2.9.1",
|
||||||
|
"webpack-merge": "^4.1.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 6.0.0",
|
||||||
|
"npm": ">= 3.0.0"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 2 versions",
|
||||||
|
"not ie <= 8"
|
||||||
|
]
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user