add 后台服务 和 部署sql 等
This commit is contained in:
50
Ewide.Nbzs.BackWorkerService/DbManage.cs
Normal file
50
Ewide.Nbzs.BackWorkerService/DbManage.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
using Furion;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
namespace Ewide.Nbzs.BackWorkerService
|
||||
{
|
||||
public class MutiDBConnectionString
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string ConnectionString { get; set; }
|
||||
public DbType DbType { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public string ProviderName { get; set; }
|
||||
}
|
||||
public class DbManage
|
||||
{
|
||||
private static List<MutiDBConnectionString> GetConnectionStrings()
|
||||
{
|
||||
var list = App.GetConfig<List<MutiDBConnectionString>>("DataBaseConnectionStrings");
|
||||
return list.Where(p => p.Enabled).ToList();
|
||||
}
|
||||
|
||||
private static SqlSugarClient GetDbClient()
|
||||
{
|
||||
List<ConnectionConfig> connectConfigList = new();
|
||||
GetConnectionStrings().ForEach(p =>
|
||||
{
|
||||
connectConfigList.Add(new ConnectionConfig
|
||||
{
|
||||
ConfigId = p.Id,
|
||||
ConnectionString = p.ConnectionString,
|
||||
DbType = p.DbType,
|
||||
IsAutoCloseConnection = true,
|
||||
InitKeyType = InitKeyType.Attribute
|
||||
});
|
||||
});
|
||||
var db = new SqlSugarClient(connectConfigList);
|
||||
return db;
|
||||
}
|
||||
public static SqlSugarProvider GetConnection(string id)
|
||||
{
|
||||
return GetDbClient().GetConnection(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,11 +7,13 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Ewide.Nbzs.Entity\Ewide.Nbzs.Entity.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\Furion.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@@ -19,10 +19,11 @@ namespace Ewide.Nbzs.BackWorkerService
|
||||
|
||||
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||
Host.CreateDefaultBuilder(args)
|
||||
.UseWindowsService()
|
||||
.Inject()
|
||||
.ConfigureServices((hostContext, services) =>
|
||||
{
|
||||
services.AddHostedService<Worker>();
|
||||
});
|
||||
}).UseSerilogDefault();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Any CPU</Platform>
|
||||
<PublishDir>D:\1_发布程序\宁波拆迁后台推送浙里办服务发布</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -1,10 +1,13 @@
|
||||
using Ewide.Nbzs.Entity;
|
||||
using Furion;
|
||||
using Furion.TaskScheduler;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
@@ -12,49 +15,191 @@ namespace Ewide.Nbzs.BackWorkerService
|
||||
{
|
||||
public class Worker : BackgroundService
|
||||
{
|
||||
public SqlSugarClient db;
|
||||
private readonly ILogger<Worker> _logger;
|
||||
|
||||
readonly SqlSugarProvider db_Product_Conn;
|
||||
readonly SqlSugarProvider db_Zlb_Conn;
|
||||
public Worker(ILogger<Worker> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
List<ConnectionConfig> connectConfigList = new()
|
||||
{
|
||||
new ConnectionConfig
|
||||
{
|
||||
ConnectionString = App.Configuration["SqlServerConnectionString:DefaultConnection"],
|
||||
DbType = DbType.SqlServer,
|
||||
IsAutoCloseConnection = true,
|
||||
InitKeyType = InitKeyType.Attribute,
|
||||
ConfigId = "0"
|
||||
}
|
||||
};
|
||||
db = new SqlSugarClient(connectConfigList);
|
||||
db_Product_Conn = DbManage.GetConnection("Product_Conn");
|
||||
db_Zlb_Conn = DbManage.GetConnection("Zlb_Conn");
|
||||
}
|
||||
|
||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
{
|
||||
while (!stoppingToken.IsCancellationRequested)
|
||||
{
|
||||
ExecProcess();
|
||||
//var asd = db.Queryable<Ewide.NbzsZheliban.Entity.zjzwfwTickets>().ToList();
|
||||
var asd = db.Queryable<Ewide.NbzsZheliban.Entity.InvestigateTable>().ToList();
|
||||
_logger.LogInformation("Worker running at: {time}", DateTimeOffset.Now);
|
||||
await Task.Delay(1000, stoppingToken);
|
||||
ExecPushProcess();
|
||||
_logger.LogInformation("已完成一次任务,Finish a Worker running at: {time}", DateTimeOffset.Now);
|
||||
await Task.Delay(1 * 60 * 1000, stoppingToken);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Ö´ÐÐÈÎÎñ ÿÃë
|
||||
/// </summary>
|
||||
private void ExecProcess()
|
||||
{
|
||||
Thread.Sleep(3000);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 执行推送任务
|
||||
/// </summary>
|
||||
private void ExecPushProcess()
|
||||
{
|
||||
//取出推送任务表数据
|
||||
var listPush = db_Product_Conn.Queryable<PushZlb>().Where(p => p.IsDeleted == 0).ToList();
|
||||
listPush.ForEach(p =>
|
||||
{
|
||||
if (p.IsAutoDo == 1)
|
||||
{
|
||||
//_logger.LogInformation("自动创建任务:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
|
||||
////自动推
|
||||
//#region 自动
|
||||
//SpareTime.Do(() =>
|
||||
//{
|
||||
// if (p.IsError == 1)
|
||||
// {
|
||||
// _logger.LogInformation("自动任务停止:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
|
||||
// return null;
|
||||
// }
|
||||
// else
|
||||
// return SpareTime.GetCronNextOccurrence(p.AutoDoTime);
|
||||
//}, (time, count) => { Push(p, count); }
|
||||
//);
|
||||
//#endregion
|
||||
|
||||
if (p.IsError == 1)
|
||||
{
|
||||
//_logger.LogInformation("自动任务停止:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
|
||||
}
|
||||
else
|
||||
{
|
||||
Push(p);
|
||||
}
|
||||
}
|
||||
else if (p.IsAutoDo == 0 && p.IsProcessed == 0)
|
||||
{
|
||||
//_logger.LogInformation("手动创建任务:" + DateTimeOffset.Now.ToString("yyyy-MM-dd HH:mm:ss"));
|
||||
//手动
|
||||
//SpareTime.DoOnce(1, (timer, count) => { Push(p); });
|
||||
Push(p);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
private void Push2(PushZlb pushZlb)
|
||||
{
|
||||
_logger.LogWarning("测试Push2");
|
||||
}
|
||||
|
||||
private List<PushResult> Push(PushZlb pushZlbObj)
|
||||
{
|
||||
_logger.LogInformation("进入Push方法():Id:{Id} ,项目ID:{PrjId} at: {time}", pushZlbObj.ID, pushZlbObj.PrjId, DateTimeOffset.Now);
|
||||
List<PushResult> list_result = new();
|
||||
try
|
||||
{
|
||||
var projectId = Guid.Parse(pushZlbObj.PrjId);
|
||||
var project = db_Product_Conn.Queryable<Projects>().Where(p => p.ID == projectId).First();
|
||||
if (project != null)
|
||||
{
|
||||
//删政策
|
||||
var delete_result = db_Zlb_Conn.Deleteable<PoliciesRegulations>().ExecuteCommandHasChange();
|
||||
list_result.Add(new PushResult { Action = "Delete", TableName = "PoliciesRegulations", IsSuccess = 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 });
|
||||
//}
|
||||
//删除非住宅协议
|
||||
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 });
|
||||
//if (delete_result)
|
||||
//{
|
||||
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 });
|
||||
//}
|
||||
//删除住宅协议
|
||||
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 });
|
||||
//if (delete_result)
|
||||
//{
|
||||
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 });
|
||||
//}
|
||||
//删除非住宅评估
|
||||
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 });
|
||||
//if (delete_result)
|
||||
//{
|
||||
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 });
|
||||
//}
|
||||
//删除住宅评估
|
||||
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 });
|
||||
//if (delete_result)
|
||||
//{
|
||||
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 });
|
||||
//}
|
||||
//删除非住宅调查表
|
||||
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 });
|
||||
//if (delete_result)
|
||||
//{
|
||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<NonResidentialInvestigateTable>().Where(p => p.ProjectId == projectId).ToList()).ExecuteCommand();
|
||||
list_result.Add(new PushResult { Action = "Insert", TableName = "NonResidentialInvestigateTable", IsSuccess = insert_result > 0 });
|
||||
//}
|
||||
//删除住宅调查表
|
||||
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 });
|
||||
//if (delete_result)
|
||||
//{
|
||||
insert_result = db_Zlb_Conn.Insertable(db_Product_Conn.Queryable<InvestigateTable>().Where(p => p.ProjectId == projectId).ToList()).ExecuteCommand();
|
||||
list_result.Add(new PushResult { Action = "Insert", TableName = "InvestigateTable", IsSuccess = insert_result > 0 });
|
||||
//}
|
||||
//删项目
|
||||
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 });
|
||||
//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 });
|
||||
//}
|
||||
}
|
||||
StringBuilder push_error_reason = new();
|
||||
//if (list_result.Any(r => !r.IsSuccess))
|
||||
//{
|
||||
// list_result.ForEach(r =>
|
||||
// {
|
||||
// push_error_reason.AppendFormat("{0} 表:[{1}] 结果:[{2}] [{3}]", r.Action, r.TableName, r.IsSuccess, r.FailReason);
|
||||
// });
|
||||
// pushZlbObj.IsProcessed = 1;
|
||||
// pushZlbObj.LastProcessTime = DateTime.Now;
|
||||
// pushZlbObj.ProcessCount = pushZlbObj.ProcessCount + 1;
|
||||
// pushZlbObj.IsError = 1;
|
||||
// pushZlbObj.ErrorReason = push_error_reason.ToString();
|
||||
// db_Product_Conn.Updateable(pushZlbObj).UpdateColumns(u => new { u.IsProcessed, u.LastProcessTime, u.ProcessCount, u.IsError, u.ErrorReason }).ExecuteCommand();
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
pushZlbObj.IsProcessed = 1;
|
||||
pushZlbObj.LastProcessTime = DateTime.Now;
|
||||
if (pushZlbObj.ProcessCount == null)
|
||||
pushZlbObj.ProcessCount = 0;
|
||||
pushZlbObj.ProcessCount++;
|
||||
pushZlbObj.IsError = 0;
|
||||
pushZlbObj.ErrorReason = push_error_reason.ToString();
|
||||
db_Product_Conn.Updateable(pushZlbObj).UpdateColumns(u => new { u.IsProcessed, u.LastProcessTime, u.ProcessCount, u.IsError, u.ErrorReason }).WhereColumns(u => new { u.ID }).ExecuteCommand();
|
||||
//}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex.Message + ex.StackTrace);
|
||||
}
|
||||
_logger.LogInformation("离开Push方法():Id:{Id} ,项目ID:{PrjId} at: {time}", pushZlbObj.ID, pushZlbObj.PrjId, DateTimeOffset.Now);
|
||||
return list_result;
|
||||
}
|
||||
}
|
||||
public class PushResult
|
||||
{
|
||||
public string Action { get; set; }
|
||||
public bool IsSuccess { get; set; }
|
||||
public string TableName { get; set; }
|
||||
public string FailReason { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,10 +6,33 @@
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"Product_Conn": {
|
||||
"DefaultConnection": "data source=118.178.224.202;initial catalog=Nbcqb2;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;MultipleActiveResultSets=True;App=EntityFramework"
|
||||
},
|
||||
"Zlb_Conn": {
|
||||
"DefaultConnection": "data source=118.178.224.202;initial catalog=NbzsZlb;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;MultipleActiveResultSets=True;App=EntityFramework"
|
||||
}
|
||||
"DataBaseConnectionStrings": [
|
||||
/*
|
||||
MySql = 0,
|
||||
SqlServer = 1,
|
||||
Sqlite = 2,
|
||||
Oracle = 3,
|
||||
PostgreSQL = 4,
|
||||
Dm = 5,
|
||||
Kdbndp = 6
|
||||
*/
|
||||
{
|
||||
"Id": 1, // 连接id,可以配置到数据库
|
||||
"DBType": 2, // db类型,枚举,具体的看上边
|
||||
"Enabled": false, // 是否开启当前数据库db
|
||||
"Connection": "WMBlog.db" // 连接字符串
|
||||
},
|
||||
{
|
||||
"Id": "Product_Conn",
|
||||
"DBType": 1,
|
||||
"Enabled": true,
|
||||
"ConnectionString": "data source=118.178.224.202;initial catalog=Nbcqb2;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;MultipleActiveResultSets=True;App=EntityFramework"
|
||||
},
|
||||
{
|
||||
"Id": "Zlb_Conn",
|
||||
"DBType": 1,
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 基础实体类
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.NbzsZheliban.Entity.Base
|
||||
namespace Ewide.Nbzs.Entity.Base
|
||||
{
|
||||
[Serializable, System.Runtime.Serialization.DataContract]
|
||||
public class RespModel
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:InvestigateTable
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:InvestigateTable_Assessment
|
||||
@@ -751,10 +750,10 @@ using System.Runtime.Serialization;
|
||||
[DataMember]
|
||||
public string Carrymode {get;set;}
|
||||
/// <summary>
|
||||
/// 分户评估附件
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="分户评估附件")]
|
||||
[Display(Name="无描述")]
|
||||
[Column("AssementFile")]
|
||||
[DataMember]
|
||||
public string AssementFile {get;set;}
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:NonInvestigateTable_Assessment
|
||||
@@ -291,14 +290,6 @@ using System.Runtime.Serialization;
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Column("PgPrice")]
|
||||
[DataMember]
|
||||
public decimal? PgPrice {get;set;}
|
||||
/// <summary>
|
||||
/// 分户评估附件
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="分户评估附件")]
|
||||
[Column("AssementFile")]
|
||||
[DataMember]
|
||||
public string AssementFile {get;set;}
|
||||
@@ -348,7 +339,6 @@ using System.Runtime.Serialization;
|
||||
this.Property(t => t.ExceedLand).HasColumnName("ExceedLand");
|
||||
this.Property(t => t.ValuationMethod).HasColumnName("ValuationMethod").IsRequired();
|
||||
this.Property(t => t.ValuationStatus).HasColumnName("ValuationStatus").IsRequired();
|
||||
this.Property(t => t.PgPrice).HasColumnName("PgPrice");
|
||||
this.Property(t => t.AssementFile).HasColumnName("AssementFile");
|
||||
}
|
||||
}**/
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:NonResidentialAgreement
|
||||
@@ -1806,14 +1805,6 @@ using System.Runtime.Serialization;
|
||||
[Column("XyFile")]
|
||||
[DataMember]
|
||||
public string XyFile {get;set;}
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Column("IsxyFile")]
|
||||
[DataMember]
|
||||
public int? IsxyFile {get;set;}
|
||||
|
||||
}
|
||||
|
||||
@@ -2050,7 +2041,6 @@ using System.Runtime.Serialization;
|
||||
this.Property(t => t.Deductible).HasColumnName("Deductible").IsRequired();
|
||||
this.Property(t => t.IsCancelRecord).HasColumnName("IsCancelRecord").IsRequired();
|
||||
this.Property(t => t.XyFile).HasColumnName("XyFile");
|
||||
this.Property(t => t.IsxyFile).HasColumnName("IsxyFile");
|
||||
}
|
||||
}**/
|
||||
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:NonResidentialInvestigateTable
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:PoliciesRegulations
|
||||
@@ -96,6 +95,22 @@ using System.Runtime.Serialization;
|
||||
public DateTime? PublicTimeEnd {get;set;}
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Column("CreateTime")]
|
||||
[DataMember]
|
||||
public DateTime? CreateTime {get;set;}
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Column("CreateUserId")]
|
||||
[DataMember]
|
||||
public Guid? CreateUserId {get;set;}
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
@@ -142,6 +157,14 @@ using System.Runtime.Serialization;
|
||||
[Column("Files")]
|
||||
[DataMember]
|
||||
public string Files {get;set;}
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Column("Sort")]
|
||||
[DataMember]
|
||||
public int Sort {get;set;}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:Projects
|
||||
@@ -983,6 +982,22 @@ using System.Runtime.Serialization;
|
||||
[DataMember]
|
||||
public string ProjectOverUserName {get;set;}
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="创建时间")]
|
||||
[Column("CreateTime")]
|
||||
[DataMember]
|
||||
public DateTime? CreateTime {get;set;}
|
||||
/// <summary>
|
||||
/// 创建人ID
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="创建人ID")]
|
||||
[Column("CreateUserId")]
|
||||
[DataMember]
|
||||
public Guid? CreateUserId {get;set;}
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
|
||||
@@ -1047,6 +1062,14 @@ using System.Runtime.Serialization;
|
||||
[DataMember]
|
||||
public string XmFiles {get;set;}
|
||||
/// <summary>
|
||||
/// 是否删除
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否删除")]
|
||||
[Column("IsDeleted")]
|
||||
[DataMember]
|
||||
public bool IsDeleted {get;set;}
|
||||
/// <summary>
|
||||
/// 项目状态,到那个节点
|
||||
/// </summary>
|
||||
|
||||
|
||||
143
Ewide.Nbzs.Entity/DataBase/PushZlb.cs
Normal file
143
Ewide.Nbzs.Entity/DataBase/PushZlb.cs
Normal file
@@ -0,0 +1,143 @@
|
||||
//----------PushZlb开始----------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:PushZlb
|
||||
/// </summary>
|
||||
[Table("PushZlb")]
|
||||
public partial class PushZlb: BaseEntity {
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Key]
|
||||
[Column("ID")]
|
||||
[DataMember]
|
||||
public string ID {get;set;}
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="项目ID")]
|
||||
[Column("PrjId")]
|
||||
[DataMember]
|
||||
public string PrjId {get;set;}
|
||||
/// <summary>
|
||||
/// 是否现在就做,1是0否
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否现在就做,1是0否")]
|
||||
[Column("IsNowDo")]
|
||||
[DataMember]
|
||||
public int IsNowDo {get;set;}
|
||||
/// <summary>
|
||||
/// 是否自动做,1是0否
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否自动做,1是0否")]
|
||||
[Column("IsAutoDo")]
|
||||
[DataMember]
|
||||
public int IsAutoDo {get;set;}
|
||||
/// <summary>
|
||||
/// 自动执行频率表达式
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="自动执行频率表达式")]
|
||||
[Column("AutoDoTime")]
|
||||
[DataMember]
|
||||
public string AutoDoTime {get;set;}
|
||||
/// <summary>
|
||||
/// 是否作废,1是0否
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否作废,1是0否")]
|
||||
[Column("IsDeleted")]
|
||||
[DataMember]
|
||||
public int IsDeleted {get;set;}
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="创建时间")]
|
||||
[Column("CreateTime")]
|
||||
[DataMember]
|
||||
public DateTime CreateTime {get;set;}
|
||||
/// <summary>
|
||||
/// 是否已处理,1是0否
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否已处理,1是0否")]
|
||||
[Column("IsProcessed")]
|
||||
[DataMember]
|
||||
public int IsProcessed {get;set;}
|
||||
/// <summary>
|
||||
/// 最后一次执行时间
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="最后一次执行时间")]
|
||||
[Column("LastProcessTime")]
|
||||
[DataMember]
|
||||
public DateTime? LastProcessTime {get;set;}
|
||||
/// <summary>
|
||||
/// 到现在执行了几次
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="到现在执行了几次")]
|
||||
[Column("ProcessCount")]
|
||||
[DataMember]
|
||||
public int? ProcessCount {get;set;}
|
||||
/// <summary>
|
||||
/// 是否出错, 1是0否
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否出错, 1是0否")]
|
||||
[Column("IsError")]
|
||||
[DataMember]
|
||||
public int? IsError {get;set;}
|
||||
/// <summary>
|
||||
/// 错误记录
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="错误记录")]
|
||||
[Column("ErrorReason")]
|
||||
[DataMember]
|
||||
public string ErrorReason {get;set;}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
/// <summary>
|
||||
/// 数据表实体类Map:PushZlb
|
||||
/// </summary>
|
||||
public class PushZlbMap : EntityTypeConfiguration<PushZlb>
|
||||
{
|
||||
public PushZlbMap()
|
||||
{
|
||||
this.ToTable("PushZlb");
|
||||
this.HasKey(t => t.ID);
|
||||
this.Property(t => t.PrjId).HasColumnName("PrjId").IsRequired();
|
||||
this.Property(t => t.IsNowDo).HasColumnName("IsNowDo").IsRequired();
|
||||
this.Property(t => t.IsAutoDo).HasColumnName("IsAutoDo").IsRequired();
|
||||
this.Property(t => t.AutoDoTime).HasColumnName("AutoDoTime");
|
||||
this.Property(t => t.IsDeleted).HasColumnName("IsDeleted").IsRequired();
|
||||
this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired();
|
||||
this.Property(t => t.IsProcessed).HasColumnName("IsProcessed").IsRequired();
|
||||
this.Property(t => t.LastProcessTime).HasColumnName("LastProcessTime");
|
||||
this.Property(t => t.ProcessCount).HasColumnName("ProcessCount");
|
||||
this.Property(t => t.IsError).HasColumnName("IsError");
|
||||
this.Property(t => t.ErrorReason).HasColumnName("ErrorReason");
|
||||
}
|
||||
}**/
|
||||
|
||||
}
|
||||
|
||||
//----------PushZlb结束----------
|
||||
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:ResidentialAgreement
|
||||
@@ -1751,61 +1750,53 @@ using System.Runtime.Serialization;
|
||||
[DataMember]
|
||||
public decimal? ZXFSPGMoney {get;set;}
|
||||
/// <summary>
|
||||
/// 实际安置房面积
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="实际安置房面积")]
|
||||
[Display(Name="无描述")]
|
||||
[Column("AcutualPlaHouseArea")]
|
||||
[DataMember]
|
||||
public decimal? AcutualPlaHouseArea {get;set;}
|
||||
/// <summary>
|
||||
/// 其中货币补偿部分面积
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="其中货币补偿部分面积")]
|
||||
[Display(Name="无描述")]
|
||||
[Column("ActualCurrSectionArea")]
|
||||
[DataMember]
|
||||
public decimal? ActualCurrSectionArea {get;set;}
|
||||
public float ActualCurrSectionArea {get;set;}
|
||||
/// <summary>
|
||||
/// 其中产权调换部分面积
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="其中产权调换部分面积")]
|
||||
[Column("ActualPorpSwapSectionArea")]
|
||||
[DataMember]
|
||||
public decimal? ActualPorpSwapSectionArea {get;set;}
|
||||
/// <summary>
|
||||
/// 其中货币补偿部分评估价值
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="其中货币补偿部分评估价值 ")]
|
||||
[Display(Name="无描述")]
|
||||
[Column("ActualCurrSectionEval")]
|
||||
[DataMember]
|
||||
public decimal? ActualCurrSectionEval {get;set;}
|
||||
/// <summary>
|
||||
/// 货币补偿补助
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="货币补偿补助")]
|
||||
[Display(Name="无描述")]
|
||||
[Column("ActualPorpSwapSectionArea")]
|
||||
[DataMember]
|
||||
public decimal? ActualPorpSwapSectionArea {get;set;}
|
||||
/// <summary>
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="无描述")]
|
||||
[Column("CurrSubsidy")]
|
||||
[DataMember]
|
||||
public decimal? CurrSubsidy {get;set;}
|
||||
/// <summary>
|
||||
/// 协议打印文件
|
||||
/// 无描述
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="协议打印文件")]
|
||||
[Display(Name="无描述")]
|
||||
[Column("XyFile")]
|
||||
[DataMember]
|
||||
public string XyFile {get;set;}
|
||||
/// <summary>
|
||||
/// 是否存在协议打印文件
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="是否存在协议打印文件")]
|
||||
[Column("IsxyFile")]
|
||||
[DataMember]
|
||||
public int? IsxyFile {get;set;}
|
||||
|
||||
}
|
||||
|
||||
@@ -2037,11 +2028,10 @@ using System.Runtime.Serialization;
|
||||
this.Property(t => t.ZXFSPGMoney).HasColumnName("ZXFSPGMoney");
|
||||
this.Property(t => t.AcutualPlaHouseArea).HasColumnName("AcutualPlaHouseArea");
|
||||
this.Property(t => t.ActualCurrSectionArea).HasColumnName("ActualCurrSectionArea");
|
||||
this.Property(t => t.ActualPorpSwapSectionArea).HasColumnName("ActualPorpSwapSectionArea");
|
||||
this.Property(t => t.ActualCurrSectionEval).HasColumnName("ActualCurrSectionEval");
|
||||
this.Property(t => t.ActualPorpSwapSectionArea).HasColumnName("ActualPorpSwapSectionArea");
|
||||
this.Property(t => t.CurrSubsidy).HasColumnName("CurrSubsidy");
|
||||
this.Property(t => t.XyFile).HasColumnName("XyFile");
|
||||
this.Property(t => t.IsxyFile).HasColumnName("IsxyFile");
|
||||
}
|
||||
}**/
|
||||
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:zjzwfwTickets
|
||||
|
||||
@@ -23,4 +23,12 @@
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="DataBase\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -5,7 +5,7 @@ using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.NbzsZheliban.Entity.Extends
|
||||
namespace Ewide.Nbzs.Entity.Extends
|
||||
{
|
||||
public class ZhelibanUserInfo
|
||||
{
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
string tableClass="";
|
||||
//所有表名称
|
||||
//string sqlGetTable = "SELECT Name FROM SysObjects Where XType='U' ORDER BY Name";
|
||||
DataTable dt = GetDataTable(new List<string> { "Projects","InvestigateTable","NonResidentialInvestigateTable","InvestigateTable_Assessment","NonInvestigateTable_Assessment","NonResidentialAgreement","ResidentialAgreement","PoliciesRegulations","zjzwfwTickets" });
|
||||
DataTable dt = GetDataTable(new List<string> { "Projects","InvestigateTable","NonResidentialInvestigateTable","InvestigateTable_Assessment","NonInvestigateTable_Assessment","NonResidentialAgreement","ResidentialAgreement","PoliciesRegulations","zjzwfwTickets","PushZlb" });
|
||||
//DataTable dtRelationTable = GetRelationTable();
|
||||
//所有表信息
|
||||
string selectQuery ="select syscolumns.name,systypes.name,syscolumns.length from syscolumns,systypes where syscolumns.xusertype=systypes.xusertype and syscolumns.id=object_id('@tableName')";
|
||||
@@ -41,9 +41,8 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using System.Runtime.Serialization;
|
||||
namespace Ewide.NbzsZheliban.Entity
|
||||
namespace Ewide.Nbzs.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:<#= tableClass #>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using Ewide.NbzsZheliban.Entity.Base;
|
||||
using Furion.JsonSerialization;
|
||||
using Furion.JsonSerialization;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
using Ewide.NbzsZheliban.Entity;
|
||||
using Ewide.NbzsZheliban.Entity.Base;
|
||||
using Ewide.NbzsZheliban.Entity.Extends;
|
||||
using Ewide.Nbzs.Entity;
|
||||
using Ewide.Nbzs.Entity.Extends;
|
||||
using Ewide.NbzsZheliban.Tools;
|
||||
using Furion;
|
||||
using Furion.DataEncryption;
|
||||
@@ -44,7 +43,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
{
|
||||
var ticket = args.GetJsonValue("ticket", isThrowExp: true);
|
||||
var userinfoObj = GetInfoByTicket(ticket);
|
||||
return new ZhelibanUserInfo
|
||||
return new Nbzs.Entity.Extends.ZhelibanUserInfo
|
||||
{
|
||||
CardId = userinfoObj["idnum"].ToString(),
|
||||
Name = userinfoObj["username"].ToString()
|
||||
@@ -65,7 +64,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
var cardno = userinfoObj["idnum"].ToString();
|
||||
var username = userinfoObj["username"].ToString();
|
||||
//修改测试数据
|
||||
db.Ado.ExecuteCommand("update InvestigateTable set ExpropriatedCardNo='" + cardno + "' where id ='FF010DD7-C938-46AC-85DD-FAF9DC128BFD' ");
|
||||
db.Ado.ExecuteCommand("update InvestigateTable set ExpropriatedCardNo='" + cardno + "' where id ='A80C1599-B658-4176-8CCF-DDA57A64254F' ");
|
||||
return await GetInfoByCardNoAsync(cardno, username);
|
||||
}
|
||||
/// <summary>
|
||||
@@ -153,7 +152,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
listAreas.Add(Guid.Parse(p.AreaID));
|
||||
});
|
||||
//政策
|
||||
var list_PoliciesRegulations = await db.Queryable<Entity.PoliciesRegulations>().Where(a => listAreas.Contains(a.AreaID)).Select(b => new PoliciesRegulation
|
||||
var list_PoliciesRegulations = await db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(a => listAreas.Contains(a.AreaID)).Select(b => new PoliciesRegulation
|
||||
{
|
||||
ID = b.ID,
|
||||
Contents = b.Contents,
|
||||
@@ -162,12 +161,12 @@ namespace Ewide.NbzsZheliban.Service
|
||||
Area = b.Area
|
||||
}).ToListAsync();
|
||||
|
||||
H5IndexModel h5IndexModel = new()
|
||||
Nbzs.Entity.Extends.H5IndexModel h5IndexModel = new()
|
||||
{
|
||||
PrjList = list_projects,
|
||||
IdCard = cardno,
|
||||
UserName = username,
|
||||
PoliciesRegulationsLists = new Entity.Extends.PoliciesRegulations { List = list_PoliciesRegulations, TotalCount = list_PoliciesRegulations.Count }
|
||||
PoliciesRegulationsLists = new Nbzs.Entity.Extends.PoliciesRegulations { List = list_PoliciesRegulations, TotalCount = list_PoliciesRegulations.Count }
|
||||
};
|
||||
return h5IndexModel;
|
||||
}
|
||||
@@ -254,7 +253,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
var ticket = args.GetJsonValue("ticket", isThrowExp: true);
|
||||
var id = args.GetJsonGuidValue("id", isThrowExp: true);
|
||||
JObject userInfoObj = GetInfoByTicket(ticket);
|
||||
var entity = await db.Queryable<Entity.PoliciesRegulations>().Where(p => p.ID == id).Select(p => new PoliciesRegulation
|
||||
var entity = await db.Queryable<Nbzs.Entity.PoliciesRegulations>().Where(p => p.ID == id).Select(p => new PoliciesRegulation
|
||||
{
|
||||
ID = p.ID,
|
||||
Area = p.Area,
|
||||
@@ -279,7 +278,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
JObject userInfoObj = GetInfoByTicket(ticket);
|
||||
var XyFile = "";
|
||||
//住宅
|
||||
var entity_zz = db.Queryable<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();
|
||||
if (entity_zz != null)
|
||||
{
|
||||
XyFile = entity_zz.XyFile;
|
||||
@@ -287,7 +286,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
//非住宅
|
||||
else
|
||||
{
|
||||
var entity_fzz = db.Queryable<Entity.NonResidentialAgreement>().Where(p => p.ID == id).Select(p => new { p.ID, p.XyFile }).First();
|
||||
var entity_fzz = db.Queryable<Nbzs.Entity.NonResidentialAgreement>().Where(p => p.ID == id).Select(p => new { p.ID, p.XyFile }).First();
|
||||
if (entity_fzz != null)
|
||||
{
|
||||
XyFile = entity_fzz.XyFile;
|
||||
@@ -314,7 +313,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
JObject userInfoObj = GetInfoByTicket(ticket);
|
||||
var XyFile = "";
|
||||
//住宅
|
||||
var entity_zz = db.Queryable<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();
|
||||
if (entity_zz != null)
|
||||
{
|
||||
XyFile = entity_zz.XyFile;
|
||||
@@ -322,7 +321,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
//非住宅
|
||||
else
|
||||
{
|
||||
var entity_fzz = db.Queryable<Entity.NonResidentialAgreement>().Where(p => p.ID == id).Select(p => new { p.ID, p.XyFile }).First();
|
||||
var entity_fzz = db.Queryable<Nbzs.Entity.NonResidentialAgreement>().Where(p => p.ID == id).Select(p => new { p.ID, p.XyFile }).First();
|
||||
if (entity_fzz != null)
|
||||
{
|
||||
XyFile = entity_fzz.XyFile;
|
||||
@@ -426,7 +425,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
if (jzlrModel.Type == 1)
|
||||
{
|
||||
//住宅
|
||||
var entity_zz = db.Queryable<Entity.InvestigateTable_Assessment>().Where(p => p.ID == Guid.Parse(jzlrModel.Id)).Select(p => new { p.ID, p.AssementFile }).First();
|
||||
var entity_zz = db.Queryable<InvestigateTable_Assessment>().Where(p => p.ID == Guid.Parse(jzlrModel.Id)).Select(p => new { p.ID, p.AssementFile }).First();
|
||||
if (entity_zz != null)
|
||||
{
|
||||
fileUrl = entity_zz.AssementFile;
|
||||
@@ -435,7 +434,7 @@ namespace Ewide.NbzsZheliban.Service
|
||||
else if (jzlrModel.Type == 2)
|
||||
{
|
||||
//非住宅
|
||||
var entity_fzz = db.Queryable<Entity.NonInvestigateTable_Assessment>().Where(p => p.ID == Guid.Parse(jzlrModel.Id)).Select(p => new { p.ID, p.AssementFile }).First();
|
||||
var entity_fzz = db.Queryable<NonInvestigateTable_Assessment>().Where(p => p.ID == Guid.Parse(jzlrModel.Id)).Select(p => new { p.ID, p.AssementFile }).First();
|
||||
if (entity_fzz != null)
|
||||
{
|
||||
fileUrl = entity_fzz.AssementFile;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -226,7 +226,7 @@
|
||||
},
|
||||
"Microsoft.AspNetCore.Authentication.JwtBearer/5.0.9": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
|
||||
@@ -355,6 +355,64 @@
|
||||
}
|
||||
},
|
||||
"Microsoft.CSharp/4.7.0": {},
|
||||
"Microsoft.Data.SqlClient/2.1.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
|
||||
"Microsoft.Identity.Client": "4.21.1",
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
|
||||
"Microsoft.Win32.Registry": "4.7.0",
|
||||
"System.Configuration.ConfigurationManager": "4.7.0",
|
||||
"System.Diagnostics.DiagnosticSource": "5.0.1",
|
||||
"System.Runtime.Caching": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0",
|
||||
"System.Text.Encoding.CodePages": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
|
||||
"assemblyVersion": "2.0.20168.4",
|
||||
"fileVersion": "2.0.20168.4"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "2.0.20168.4",
|
||||
"fileVersion": "2.0.20168.4"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "2.0.20168.4",
|
||||
"fileVersion": "2.0.20168.4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-arm",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
},
|
||||
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
},
|
||||
"runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
},
|
||||
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Data.Sqlite/2.2.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.Data.Sqlite.Core": "2.2.4",
|
||||
@@ -498,59 +556,67 @@
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/5.0.0": {},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
|
||||
"Microsoft.Identity.Client/4.21.1": {
|
||||
"runtime": {
|
||||
"lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
|
||||
"assemblyVersion": "4.21.1.0",
|
||||
"fileVersion": "4.21.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Tokens": "6.7.1"
|
||||
"Microsoft.IdentityModel.Tokens": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Logging/6.7.1": {
|
||||
"Microsoft.IdentityModel.Logging/6.8.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Logging": "6.7.1",
|
||||
"Microsoft.IdentityModel.Tokens": "6.7.1"
|
||||
"Microsoft.IdentityModel.Logging": "6.8.0",
|
||||
"Microsoft.IdentityModel.Tokens": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Protocols": "6.7.1",
|
||||
"System.IdentityModel.Tokens.Jwt": "6.7.1"
|
||||
"Microsoft.IdentityModel.Protocols": "6.8.0",
|
||||
"System.IdentityModel.Tokens.Jwt": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/6.7.1": {
|
||||
"Microsoft.IdentityModel.Tokens/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.CSharp": "4.7.0",
|
||||
"Microsoft.IdentityModel.Logging": "6.7.1",
|
||||
"Microsoft.IdentityModel.Logging": "6.8.0",
|
||||
"System.Security.Cryptography.Cng": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -571,9 +637,8 @@
|
||||
"System.Runtime": "4.3.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.4.0": {
|
||||
"Microsoft.Win32.Registry/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
}
|
||||
@@ -723,11 +788,17 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Oracle.ManagedDataAccess.Core/2.18.3": {
|
||||
"Oracle.ManagedDataAccess.Core/3.21.1": {
|
||||
"dependencies": {
|
||||
"System.Diagnostics.PerformanceCounter": "4.7.0",
|
||||
"System.DirectoryServices": "4.7.0",
|
||||
"System.DirectoryServices.Protocols": "4.7.0",
|
||||
"System.Text.Json": "5.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {
|
||||
"assemblyVersion": "2.0.18.3",
|
||||
"fileVersion": "2.0.18.3"
|
||||
"lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {
|
||||
"assemblyVersion": "3.1.21.1",
|
||||
"fileVersion": "3.1.21.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -761,13 +832,6 @@
|
||||
"Microsoft.NETCore.Targets": "1.1.0"
|
||||
}
|
||||
},
|
||||
"runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"dependencies": {
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||
}
|
||||
},
|
||||
"runtime.native.System.IO.Compression/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
@@ -807,33 +871,6 @@
|
||||
"runtime.ubuntu.14.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": {},
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/sni.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-x64/native/sni.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-x86/native/sni.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog/2.10.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Serilog.dll": {
|
||||
@@ -1060,23 +1097,23 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SqlSugarCore/5.0.3.2": {
|
||||
"SqlSugarCore/5.0.3.8": {
|
||||
"dependencies": {
|
||||
"Microsoft.Data.SqlClient": "2.1.1",
|
||||
"Microsoft.Data.Sqlite": "2.2.4",
|
||||
"MySql.Data": "8.0.21",
|
||||
"Newtonsoft.Json": "13.0.1",
|
||||
"Npgsql": "4.1.3.1",
|
||||
"Oracle.ManagedDataAccess.Core": "2.18.3",
|
||||
"Oracle.ManagedDataAccess.Core": "3.21.1",
|
||||
"SqlSugarCore.Dm": "1.0.0",
|
||||
"SqlSugarCore.Kdbndp": "1.0.0",
|
||||
"System.Data.Common": "4.3.0",
|
||||
"System.Data.SqlClient": "4.4.0",
|
||||
"System.Reflection.Emit.Lightweight": "4.3.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/SqlSugar.dll": {
|
||||
"assemblyVersion": "5.0.3.2",
|
||||
"fileVersion": "5.0.3.2"
|
||||
"lib/netstandard2.1/SqlSugar.dll": {
|
||||
"assemblyVersion": "5.0.3.8",
|
||||
"fileVersion": "5.0.3.8"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1252,34 +1289,6 @@
|
||||
"System.Threading.Tasks": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.Data.SqlClient/4.4.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.Registry": "4.4.0",
|
||||
"System.Security.Principal.Windows": "4.7.0",
|
||||
"System.Text.Encoding.CodePages": "5.0.0",
|
||||
"runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Data.SqlClient.dll": {
|
||||
"assemblyVersion": "4.2.0.0",
|
||||
"fileVersion": "4.6.25519.3"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.2.0.0",
|
||||
"fileVersion": "4.6.25519.3"
|
||||
},
|
||||
"runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.2.0.0",
|
||||
"fileVersion": "4.6.25519.3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
@@ -1295,6 +1304,28 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.PerformanceCounter/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"Microsoft.Win32.Registry": "4.7.0",
|
||||
"System.Configuration.ConfigurationManager": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
|
||||
"assemblyVersion": "4.0.2.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.2.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.StackTrace/4.3.0": {
|
||||
"dependencies": {
|
||||
"System.IO.FileSystem": "4.3.0",
|
||||
@@ -1330,6 +1361,49 @@
|
||||
"System.Runtime": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.DirectoryServices/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.IO.FileSystem.AccessControl": "4.7.0",
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Permissions": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.DirectoryServices.dll": {
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.DirectoryServices.Protocols/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
@@ -1398,15 +1472,15 @@
|
||||
"System.Runtime.InteropServices": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.IdentityModel.Tokens.Jwt/6.7.1": {
|
||||
"System.IdentityModel.Tokens.Jwt/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "6.7.1",
|
||||
"Microsoft.IdentityModel.Tokens": "6.7.1"
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
|
||||
"Microsoft.IdentityModel.Tokens": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1463,6 +1537,12 @@
|
||||
"System.Threading.Tasks": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl/4.7.0": {
|
||||
"dependencies": {
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
}
|
||||
},
|
||||
"System.IO.FileSystem.Primitives/4.3.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime": "4.3.0"
|
||||
@@ -1652,6 +1732,25 @@
|
||||
"Microsoft.NETCore.Targets": "1.1.0"
|
||||
}
|
||||
},
|
||||
"System.Runtime.Caching/4.7.0": {
|
||||
"dependencies": {
|
||||
"System.Configuration.ConfigurationManager": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Runtime.Caching.dll": {
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {},
|
||||
"System.Runtime.Extensions/4.3.0": {
|
||||
"dependencies": {
|
||||
@@ -2019,7 +2118,7 @@
|
||||
"Furion": "2.18.7",
|
||||
"Furion.Extras.Authentication.JwtBearer": "2.18.7",
|
||||
"Furion.Extras.DatabaseAccessor.Dapper": "2.18.7",
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar": "2.12.9",
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar": "2.18.7",
|
||||
"Furion.Extras.Logging.Serilog": "2.18.7",
|
||||
"Furion.Extras.ObjectMapper.Mapster": "2.18.7",
|
||||
"Kendo.DynamicLinqCore": "3.1.1",
|
||||
@@ -2068,9 +2167,9 @@
|
||||
"Furion.Extras.DatabaseAccessor.Dapper.dll": {}
|
||||
}
|
||||
},
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": {
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.18.7": {
|
||||
"dependencies": {
|
||||
"SqlSugarCore": "5.0.3.2"
|
||||
"SqlSugarCore": "5.0.3.8"
|
||||
},
|
||||
"runtime": {
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar.dll": {}
|
||||
@@ -2262,6 +2361,20 @@
|
||||
"path": "microsoft.csharp/4.7.0",
|
||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Data.SqlClient/2.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
|
||||
"path": "microsoft.data.sqlclient/2.1.1",
|
||||
"hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
|
||||
"path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
|
||||
"hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Data.Sqlite/2.2.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2416,40 +2529,47 @@
|
||||
"path": "microsoft.extensions.primitives/5.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
|
||||
"Microsoft.Identity.Client/4.21.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
|
||||
"path": "microsoft.identitymodel.jsonwebtokens/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
|
||||
"path": "microsoft.identity.client/4.21.1",
|
||||
"hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Logging/6.7.1": {
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==",
|
||||
"path": "microsoft.identitymodel.logging/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.logging.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
|
||||
"path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols/6.7.1": {
|
||||
"Microsoft.IdentityModel.Logging/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==",
|
||||
"path": "microsoft.identitymodel.protocols/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
|
||||
"path": "microsoft.identitymodel.logging/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==",
|
||||
"path": "microsoft.identitymodel.protocols.openidconnect/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
|
||||
"path": "microsoft.identitymodel.protocols/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==",
|
||||
"path": "microsoft.identitymodel.tokens/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
|
||||
"path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
|
||||
"path": "microsoft.identitymodel.tokens/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
@@ -2479,12 +2599,12 @@
|
||||
"path": "microsoft.win32.primitives/4.3.0",
|
||||
"hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.4.0": {
|
||||
"Microsoft.Win32.Registry/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
|
||||
"path": "microsoft.win32.registry/4.4.0",
|
||||
"hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
|
||||
"sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
|
||||
"path": "microsoft.win32.registry/4.7.0",
|
||||
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
@@ -2542,12 +2662,12 @@
|
||||
"path": "npgsql/4.1.3.1",
|
||||
"hashPath": "npgsql.4.1.3.1.nupkg.sha512"
|
||||
},
|
||||
"Oracle.ManagedDataAccess.Core/2.18.3": {
|
||||
"Oracle.ManagedDataAccess.Core/3.21.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
|
||||
"path": "oracle.manageddataaccess.core/2.18.3",
|
||||
"hashPath": "oracle.manageddataaccess.core.2.18.3.nupkg.sha512"
|
||||
"sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
|
||||
"path": "oracle.manageddataaccess.core/3.21.1",
|
||||
"hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512"
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.10": {
|
||||
"type": "package",
|
||||
@@ -2591,13 +2711,6 @@
|
||||
"path": "runtime.native.system/4.3.0",
|
||||
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
|
||||
"path": "runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.native.System.IO.Compression/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2682,27 +2795,6 @@
|
||||
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
|
||||
"hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
|
||||
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
|
||||
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
|
||||
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog/2.10.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2808,12 +2900,12 @@
|
||||
"path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
|
||||
"hashPath": "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512"
|
||||
},
|
||||
"SqlSugarCore/5.0.3.2": {
|
||||
"SqlSugarCore/5.0.3.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Oyl73NFAPBYNgV/6qfclNTarLMAkpvPFT0kzzwNryoriJXtUgDngTPedfd4nYbrs+k7vlTMlgAOfQtJoIA6tWQ==",
|
||||
"path": "sqlsugarcore/5.0.3.2",
|
||||
"hashPath": "sqlsugarcore.5.0.3.2.nupkg.sha512"
|
||||
"sha512": "sha512-5J4JWa0lZxF5OTZz7KKPnJrijwpCx6lUduR8dTqhnCy9FNTPI/S2bRlv7C181JIHBKc7zwIkPY+tOtszGKBuKQ==",
|
||||
"path": "sqlsugarcore/5.0.3.8",
|
||||
"hashPath": "sqlsugarcore.5.0.3.8.nupkg.sha512"
|
||||
},
|
||||
"SqlSugarCore.Dm/1.0.0": {
|
||||
"type": "package",
|
||||
@@ -2948,13 +3040,6 @@
|
||||
"path": "system.data.common/4.3.0",
|
||||
"hashPath": "system.data.common.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Data.SqlClient/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
|
||||
"path": "system.data.sqlclient/4.4.0",
|
||||
"hashPath": "system.data.sqlclient.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2969,6 +3054,13 @@
|
||||
"path": "system.diagnostics.diagnosticsource/5.0.1",
|
||||
"hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.PerformanceCounter/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
|
||||
"path": "system.diagnostics.performancecounter/4.7.0",
|
||||
"hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.StackTrace/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2997,6 +3089,20 @@
|
||||
"path": "system.diagnostics.tracing/4.3.0",
|
||||
"hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.DirectoryServices/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
|
||||
"path": "system.directoryservices/4.7.0",
|
||||
"hashPath": "system.directoryservices.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.DirectoryServices.Protocols/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
|
||||
"path": "system.directoryservices.protocols/4.7.0",
|
||||
"hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -3032,12 +3138,12 @@
|
||||
"path": "system.globalization.extensions/4.3.0",
|
||||
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.IdentityModel.Tokens.Jwt/6.7.1": {
|
||||
"System.IdentityModel.Tokens.Jwt/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
|
||||
"path": "system.identitymodel.tokens.jwt/6.7.1",
|
||||
"hashPath": "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
|
||||
"path": "system.identitymodel.tokens.jwt/6.8.0",
|
||||
"hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO/4.3.0": {
|
||||
"type": "package",
|
||||
@@ -3067,6 +3173,13 @@
|
||||
"path": "system.io.filesystem/4.3.0",
|
||||
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
|
||||
"path": "system.io.filesystem.accesscontrol/4.7.0",
|
||||
"hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO.FileSystem.Primitives/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -3207,6 +3320,13 @@
|
||||
"path": "system.runtime/4.3.0",
|
||||
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.Caching/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
|
||||
"path": "system.runtime.caching/4.7.0",
|
||||
"hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -3498,7 +3618,7 @@
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": {
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.18.7": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -9,6 +9,7 @@
|
||||
"Ewide.NbzsZheliban/1.0.0": {
|
||||
"dependencies": {
|
||||
"Ewide.Core": "1.0.0",
|
||||
"Ewide.Nbzs.Entity": "1.0.0",
|
||||
"Magick.NET-Q16-AnyCPU": "8.3.1"
|
||||
},
|
||||
"runtime": {
|
||||
@@ -43,7 +44,7 @@
|
||||
},
|
||||
"CSRedisCore/3.6.6": {
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "12.0.3",
|
||||
"Newtonsoft.Json": "13.0.1",
|
||||
"System.ValueTuple": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
@@ -225,7 +226,7 @@
|
||||
},
|
||||
"Microsoft.AspNetCore.Authentication.JwtBearer/5.0.9": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
|
||||
@@ -354,6 +355,64 @@
|
||||
}
|
||||
},
|
||||
"Microsoft.CSharp/4.7.0": {},
|
||||
"Microsoft.Data.SqlClient/2.1.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
|
||||
"Microsoft.Identity.Client": "4.21.1",
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
|
||||
"Microsoft.Win32.Registry": "4.7.0",
|
||||
"System.Configuration.ConfigurationManager": "4.7.0",
|
||||
"System.Diagnostics.DiagnosticSource": "5.0.1",
|
||||
"System.Runtime.Caching": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0",
|
||||
"System.Text.Encoding.CodePages": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
|
||||
"assemblyVersion": "2.0.20168.4",
|
||||
"fileVersion": "2.0.20168.4"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "2.0.20168.4",
|
||||
"fileVersion": "2.0.20168.4"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "2.0.20168.4",
|
||||
"fileVersion": "2.0.20168.4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-arm",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
},
|
||||
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
},
|
||||
"runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
},
|
||||
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "2.1.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Data.Sqlite/2.2.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.Data.Sqlite.Core": "2.2.4",
|
||||
@@ -497,59 +556,67 @@
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/5.0.0": {},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
|
||||
"Microsoft.Identity.Client/4.21.1": {
|
||||
"runtime": {
|
||||
"lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
|
||||
"assemblyVersion": "4.21.1.0",
|
||||
"fileVersion": "4.21.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Tokens": "6.7.1"
|
||||
"Microsoft.IdentityModel.Tokens": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Logging/6.7.1": {
|
||||
"Microsoft.IdentityModel.Logging/6.8.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Logging": "6.7.1",
|
||||
"Microsoft.IdentityModel.Tokens": "6.7.1"
|
||||
"Microsoft.IdentityModel.Logging": "6.8.0",
|
||||
"Microsoft.IdentityModel.Tokens": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Protocols": "6.7.1",
|
||||
"System.IdentityModel.Tokens.Jwt": "6.7.1"
|
||||
"Microsoft.IdentityModel.Protocols": "6.8.0",
|
||||
"System.IdentityModel.Tokens.Jwt": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/6.7.1": {
|
||||
"Microsoft.IdentityModel.Tokens/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.CSharp": "4.7.0",
|
||||
"Microsoft.IdentityModel.Logging": "6.7.1",
|
||||
"Microsoft.IdentityModel.Logging": "6.8.0",
|
||||
"System.Security.Cryptography.Cng": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -570,9 +637,8 @@
|
||||
"System.Runtime": "4.3.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.4.0": {
|
||||
"Microsoft.Win32.Registry/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
}
|
||||
@@ -608,7 +674,7 @@
|
||||
"MiniProfiler.Shared/4.2.22": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
|
||||
"Newtonsoft.Json": "12.0.3",
|
||||
"Newtonsoft.Json": "13.0.1",
|
||||
"System.ComponentModel.Primitives": "4.3.0",
|
||||
"System.Data.Common": "4.3.0",
|
||||
"System.Diagnostics.DiagnosticSource": "5.0.1",
|
||||
@@ -703,11 +769,11 @@
|
||||
"System.Xml.XDocument": "4.3.0"
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/12.0.3": {
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "12.0.0.0",
|
||||
"fileVersion": "12.0.3.23909"
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.1.25517"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -722,11 +788,17 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Oracle.ManagedDataAccess.Core/2.18.3": {
|
||||
"Oracle.ManagedDataAccess.Core/3.21.1": {
|
||||
"dependencies": {
|
||||
"System.Diagnostics.PerformanceCounter": "4.7.0",
|
||||
"System.DirectoryServices": "4.7.0",
|
||||
"System.DirectoryServices.Protocols": "4.7.0",
|
||||
"System.Text.Json": "5.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {
|
||||
"assemblyVersion": "2.0.18.3",
|
||||
"fileVersion": "2.0.18.3"
|
||||
"lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {
|
||||
"assemblyVersion": "3.1.21.1",
|
||||
"fileVersion": "3.1.21.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -760,13 +832,6 @@
|
||||
"Microsoft.NETCore.Targets": "1.1.0"
|
||||
}
|
||||
},
|
||||
"runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"dependencies": {
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||
}
|
||||
},
|
||||
"runtime.native.System.IO.Compression/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
@@ -806,33 +871,6 @@
|
||||
"runtime.ubuntu.14.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": {},
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/sni.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-x64/native/sni.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-x86/native/sni.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "4.6.25512.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog/2.10.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Serilog.dll": {
|
||||
@@ -1059,23 +1097,23 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SqlSugarCore/5.0.3.2": {
|
||||
"SqlSugarCore/5.0.3.8": {
|
||||
"dependencies": {
|
||||
"Microsoft.Data.SqlClient": "2.1.1",
|
||||
"Microsoft.Data.Sqlite": "2.2.4",
|
||||
"MySql.Data": "8.0.21",
|
||||
"Newtonsoft.Json": "12.0.3",
|
||||
"Newtonsoft.Json": "13.0.1",
|
||||
"Npgsql": "4.1.3.1",
|
||||
"Oracle.ManagedDataAccess.Core": "2.18.3",
|
||||
"Oracle.ManagedDataAccess.Core": "3.21.1",
|
||||
"SqlSugarCore.Dm": "1.0.0",
|
||||
"SqlSugarCore.Kdbndp": "1.0.0",
|
||||
"System.Data.Common": "4.3.0",
|
||||
"System.Data.SqlClient": "4.4.0",
|
||||
"System.Reflection.Emit.Lightweight": "4.3.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/SqlSugar.dll": {
|
||||
"assemblyVersion": "5.0.3.2",
|
||||
"fileVersion": "5.0.3.2"
|
||||
"lib/netstandard2.1/SqlSugar.dll": {
|
||||
"assemblyVersion": "5.0.3.8",
|
||||
"fileVersion": "5.0.3.8"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1251,34 +1289,6 @@
|
||||
"System.Threading.Tasks": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.Data.SqlClient/4.4.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.Registry": "4.4.0",
|
||||
"System.Security.Principal.Windows": "4.7.0",
|
||||
"System.Text.Encoding.CodePages": "5.0.0",
|
||||
"runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Data.SqlClient.dll": {
|
||||
"assemblyVersion": "4.2.0.0",
|
||||
"fileVersion": "4.6.25519.3"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.2.0.0",
|
||||
"fileVersion": "4.6.25519.3"
|
||||
},
|
||||
"runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.2.0.0",
|
||||
"fileVersion": "4.6.25519.3"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
@@ -1294,6 +1304,28 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.PerformanceCounter/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"Microsoft.Win32.Registry": "4.7.0",
|
||||
"System.Configuration.ConfigurationManager": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
|
||||
"assemblyVersion": "4.0.2.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.2.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.StackTrace/4.3.0": {
|
||||
"dependencies": {
|
||||
"System.IO.FileSystem": "4.3.0",
|
||||
@@ -1329,6 +1361,49 @@
|
||||
"System.Runtime": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.DirectoryServices/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.IO.FileSystem.AccessControl": "4.7.0",
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Permissions": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.DirectoryServices.dll": {
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.DirectoryServices.Protocols/4.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
@@ -1397,15 +1472,15 @@
|
||||
"System.Runtime.InteropServices": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.IdentityModel.Tokens.Jwt/6.7.1": {
|
||||
"System.IdentityModel.Tokens.Jwt/6.8.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "6.7.1",
|
||||
"Microsoft.IdentityModel.Tokens": "6.7.1"
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
|
||||
"Microsoft.IdentityModel.Tokens": "6.8.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
|
||||
"assemblyVersion": "6.7.1.0",
|
||||
"fileVersion": "6.7.1.10630"
|
||||
"assemblyVersion": "6.8.0.0",
|
||||
"fileVersion": "6.8.0.11012"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1462,6 +1537,12 @@
|
||||
"System.Threading.Tasks": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl/4.7.0": {
|
||||
"dependencies": {
|
||||
"System.Security.AccessControl": "4.7.0",
|
||||
"System.Security.Principal.Windows": "4.7.0"
|
||||
}
|
||||
},
|
||||
"System.IO.FileSystem.Primitives/4.3.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime": "4.3.0"
|
||||
@@ -1651,6 +1732,25 @@
|
||||
"Microsoft.NETCore.Targets": "1.1.0"
|
||||
}
|
||||
},
|
||||
"System.Runtime.Caching/4.7.0": {
|
||||
"dependencies": {
|
||||
"System.Configuration.ConfigurationManager": "4.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Runtime.Caching.dll": {
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.0.1.0",
|
||||
"fileVersion": "4.700.19.56404"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {},
|
||||
"System.Runtime.Extensions/4.3.0": {
|
||||
"dependencies": {
|
||||
@@ -2018,7 +2118,7 @@
|
||||
"Furion": "2.18.7",
|
||||
"Furion.Extras.Authentication.JwtBearer": "2.18.7",
|
||||
"Furion.Extras.DatabaseAccessor.Dapper": "2.18.7",
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar": "2.12.9",
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar": "2.18.7",
|
||||
"Furion.Extras.Logging.Serilog": "2.18.7",
|
||||
"Furion.Extras.ObjectMapper.Mapster": "2.18.7",
|
||||
"Kendo.DynamicLinqCore": "3.1.1",
|
||||
@@ -2033,6 +2133,14 @@
|
||||
"Ewide.Core.dll": {}
|
||||
}
|
||||
},
|
||||
"Ewide.Nbzs.Entity/1.0.0": {
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "13.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"Ewide.Nbzs.Entity.dll": {}
|
||||
}
|
||||
},
|
||||
"Furion/2.18.7": {
|
||||
"dependencies": {
|
||||
"Furion.Extras.DependencyModel.CodeAnalysis": "2.18.7",
|
||||
@@ -2059,9 +2167,9 @@
|
||||
"Furion.Extras.DatabaseAccessor.Dapper.dll": {}
|
||||
}
|
||||
},
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": {
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.18.7": {
|
||||
"dependencies": {
|
||||
"SqlSugarCore": "5.0.3.2"
|
||||
"SqlSugarCore": "5.0.3.8"
|
||||
},
|
||||
"runtime": {
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar.dll": {}
|
||||
@@ -2253,6 +2361,20 @@
|
||||
"path": "microsoft.csharp/4.7.0",
|
||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Data.SqlClient/2.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
|
||||
"path": "microsoft.data.sqlclient/2.1.1",
|
||||
"hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
|
||||
"path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
|
||||
"hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Data.Sqlite/2.2.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2407,40 +2529,47 @@
|
||||
"path": "microsoft.extensions.primitives/5.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
|
||||
"Microsoft.Identity.Client/4.21.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
|
||||
"path": "microsoft.identitymodel.jsonwebtokens/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
|
||||
"path": "microsoft.identity.client/4.21.1",
|
||||
"hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Logging/6.7.1": {
|
||||
"Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==",
|
||||
"path": "microsoft.identitymodel.logging/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.logging.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
|
||||
"path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols/6.7.1": {
|
||||
"Microsoft.IdentityModel.Logging/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==",
|
||||
"path": "microsoft.identitymodel.protocols/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
|
||||
"path": "microsoft.identitymodel.logging/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==",
|
||||
"path": "microsoft.identitymodel.protocols.openidconnect/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
|
||||
"path": "microsoft.identitymodel.protocols/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/6.7.1": {
|
||||
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==",
|
||||
"path": "microsoft.identitymodel.tokens/6.7.1",
|
||||
"hashPath": "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
|
||||
"path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
|
||||
"path": "microsoft.identitymodel.tokens/6.8.0",
|
||||
"hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
@@ -2470,12 +2599,12 @@
|
||||
"path": "microsoft.win32.primitives/4.3.0",
|
||||
"hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.4.0": {
|
||||
"Microsoft.Win32.Registry/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
|
||||
"path": "microsoft.win32.registry/4.4.0",
|
||||
"hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
|
||||
"sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
|
||||
"path": "microsoft.win32.registry/4.7.0",
|
||||
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
@@ -2519,12 +2648,12 @@
|
||||
"path": "netstandard.library/1.6.1",
|
||||
"hashPath": "netstandard.library.1.6.1.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/12.0.3": {
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
|
||||
"path": "newtonsoft.json/12.0.3",
|
||||
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
|
||||
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
|
||||
"path": "newtonsoft.json/13.0.1",
|
||||
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
|
||||
},
|
||||
"Npgsql/4.1.3.1": {
|
||||
"type": "package",
|
||||
@@ -2533,12 +2662,12 @@
|
||||
"path": "npgsql/4.1.3.1",
|
||||
"hashPath": "npgsql.4.1.3.1.nupkg.sha512"
|
||||
},
|
||||
"Oracle.ManagedDataAccess.Core/2.18.3": {
|
||||
"Oracle.ManagedDataAccess.Core/3.21.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
|
||||
"path": "oracle.manageddataaccess.core/2.18.3",
|
||||
"hashPath": "oracle.manageddataaccess.core.2.18.3.nupkg.sha512"
|
||||
"sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
|
||||
"path": "oracle.manageddataaccess.core/3.21.1",
|
||||
"hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512"
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.10": {
|
||||
"type": "package",
|
||||
@@ -2582,13 +2711,6 @@
|
||||
"path": "runtime.native.system/4.3.0",
|
||||
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
|
||||
"path": "runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.native.System.IO.Compression/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2673,27 +2795,6 @@
|
||||
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
|
||||
"hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
|
||||
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
|
||||
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
|
||||
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog/2.10.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2799,12 +2900,12 @@
|
||||
"path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
|
||||
"hashPath": "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512"
|
||||
},
|
||||
"SqlSugarCore/5.0.3.2": {
|
||||
"SqlSugarCore/5.0.3.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Oyl73NFAPBYNgV/6qfclNTarLMAkpvPFT0kzzwNryoriJXtUgDngTPedfd4nYbrs+k7vlTMlgAOfQtJoIA6tWQ==",
|
||||
"path": "sqlsugarcore/5.0.3.2",
|
||||
"hashPath": "sqlsugarcore.5.0.3.2.nupkg.sha512"
|
||||
"sha512": "sha512-5J4JWa0lZxF5OTZz7KKPnJrijwpCx6lUduR8dTqhnCy9FNTPI/S2bRlv7C181JIHBKc7zwIkPY+tOtszGKBuKQ==",
|
||||
"path": "sqlsugarcore/5.0.3.8",
|
||||
"hashPath": "sqlsugarcore.5.0.3.8.nupkg.sha512"
|
||||
},
|
||||
"SqlSugarCore.Dm/1.0.0": {
|
||||
"type": "package",
|
||||
@@ -2939,13 +3040,6 @@
|
||||
"path": "system.data.common/4.3.0",
|
||||
"hashPath": "system.data.common.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Data.SqlClient/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
|
||||
"path": "system.data.sqlclient/4.4.0",
|
||||
"hashPath": "system.data.sqlclient.4.4.0.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2960,6 +3054,13 @@
|
||||
"path": "system.diagnostics.diagnosticsource/5.0.1",
|
||||
"hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.PerformanceCounter/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
|
||||
"path": "system.diagnostics.performancecounter/4.7.0",
|
||||
"hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.StackTrace/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -2988,6 +3089,20 @@
|
||||
"path": "system.diagnostics.tracing/4.3.0",
|
||||
"hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.DirectoryServices/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
|
||||
"path": "system.directoryservices/4.7.0",
|
||||
"hashPath": "system.directoryservices.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.DirectoryServices.Protocols/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
|
||||
"path": "system.directoryservices.protocols/4.7.0",
|
||||
"hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -3023,12 +3138,12 @@
|
||||
"path": "system.globalization.extensions/4.3.0",
|
||||
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.IdentityModel.Tokens.Jwt/6.7.1": {
|
||||
"System.IdentityModel.Tokens.Jwt/6.8.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
|
||||
"path": "system.identitymodel.tokens.jwt/6.7.1",
|
||||
"hashPath": "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512"
|
||||
"sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
|
||||
"path": "system.identitymodel.tokens.jwt/6.8.0",
|
||||
"hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO/4.3.0": {
|
||||
"type": "package",
|
||||
@@ -3058,6 +3173,13 @@
|
||||
"path": "system.io.filesystem/4.3.0",
|
||||
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
|
||||
"path": "system.io.filesystem.accesscontrol/4.7.0",
|
||||
"hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO.FileSystem.Primitives/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -3198,6 +3320,13 @@
|
||||
"path": "system.runtime/4.3.0",
|
||||
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.Caching/4.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
|
||||
"path": "system.runtime.caching/4.7.0",
|
||||
"hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -3469,6 +3598,11 @@
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Ewide.Nbzs.Entity/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Furion/2.18.7": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
@@ -3484,7 +3618,7 @@
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": {
|
||||
"Furion.Extras.DatabaseAccessor.SqlSugar/2.18.7": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
283159aa7621c878c3d2922181efab5f330e0f3b
|
||||
18b81abb8b32055668d7f327591b58a7f0a2cc3f
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
5f12d868d489d4519eeb1984207ea80b06709ca4
|
||||
8d49216a3c5aed4b88f30d5f0d3af55eeb105b22
|
||||
|
||||
@@ -34,3 +34,5 @@ D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.Nbz
|
||||
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.
@@ -20,7 +20,7 @@ git branch zsxt_nbzs_h5
|
||||
git branch -a
|
||||
切换到新建的分支
|
||||
git checkout zsxt_nbzs_h5
|
||||
|
||||
推送新的分支
|
||||
打开项目vs,增加类库
|
||||
递归克隆
|
||||
git clone --recursive http://118.178.224.202:3000/ewide/zsxt_nbzs_h5.git
|
||||
|
||||
1
framework/Api/Furion
Submodule
1
framework/Api/Furion
Submodule
Submodule framework/Api/Furion added at 670f93a372
97
sql/PlanProjectHistory.sql
Normal file
97
sql/PlanProjectHistory.sql
Normal file
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : 118.178.224.202-SqlServer
|
||||
Source Server Type : SQL Server
|
||||
Source Server Version : 10501600
|
||||
Source Host : 118.178.224.202:1433
|
||||
Source Catalog : Nbcqb2
|
||||
Source Schema : dbo
|
||||
|
||||
Target Server Type : SQL Server
|
||||
Target Server Version : 10501600
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 26/09/2021 17:07:29
|
||||
*/
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for PlanProjectHistory
|
||||
-- ----------------------------
|
||||
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[PlanProjectHistory]') AND type IN ('U'))
|
||||
DROP TABLE [dbo].[PlanProjectHistory]
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[PlanProjectHistory] (
|
||||
[ID] uniqueidentifier NOT NULL,
|
||||
[PlanProjectID] uniqueidentifier NOT NULL,
|
||||
[PlanID] uniqueidentifier NULL,
|
||||
[ProjectName] nvarchar(200) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[Range] nvarchar(500) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[ResidentialCollectArea] decimal(18,2) NULL,
|
||||
[NonResidentialCollectArea] decimal(18,2) NULL,
|
||||
[CollectAllArea] decimal(18,2) NULL,
|
||||
[ResidentialCollectCount] decimal(18) NULL,
|
||||
[NonResidentialCollectCount] decimal(18) NULL,
|
||||
[CollectAllCount] decimal(18) NULL,
|
||||
[PlanImplHouseInfoAddr] nvarchar(500) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[PlanImplHouseInfoNum] int NULL,
|
||||
[PublicInterestID] uniqueidentifier NULL,
|
||||
[PublicInterest] nvarchar(500) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[IsCity] int NULL,
|
||||
[Remark] ntext COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[IsGenderProject] int NOT NULL,
|
||||
[CreateUserId] uniqueidentifier NULL,
|
||||
[CreateUserName] nvarchar(200) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[PCreateTime] datetime NULL,
|
||||
[UpdateTime] datetime NULL,
|
||||
[UpdateUserId] uniqueidentifier NULL,
|
||||
[UpdateUserName] nvarchar(50) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[Files] ntext COLLATE Chinese_PRC_CI_AS NULL
|
||||
)
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[PlanProjectHistory] SET (LOCK_ESCALATION = TABLE)
|
||||
GO
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of [PlanProjectHistory]
|
||||
-- ----------------------------
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'635B176E-206C-42A3-8CDC-2E93E454EC74', N'66C7DE91-191B-44FD-961B-11982F990F02', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'水角凌2#地块', N'东至县前街20弄;南至县前街20弄17-20号;西至县前街20弄21号;北至县后巷36号。', N'6800.00', N'.00', N'6800.00', N'110', N'0', N'110', N'新世纪环岛D3地块住宅小区', N'50', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'A97521E7-3FEA-4A95-8C70-35D289589D4B', N'FE1C2971-6579-4FF7-9BCD-28C4979276B3', N'19BCF7E4-1F74-4F1B-92C9-72BEFCEF4913', N'孔浦闸站整治改造工程', N'东至宁波人峰运输有限公司华通码头堆货区、南至甬江左岸岸线、西至七三二三部队舰艇修理所、北至现状孔浦闸站上游约70米范围内的国有土地上房屋,具体门牌为:宁波市江甬物资中转有限公司(大庆北路61弄69号)、宁波市江北区农林水利局资产管理中心(大庆北路61弄69号)、宁波丰群冷藏有限公司部分(大庆北路131号)。', N'.00', N'10342.00', N'10342.00', N'0', N'3', N'3', N'', N'0', N'49CCAEDA-FEDA-47CB-8DCA-FA9AB8848DF7', NULL, N'0', N'', N'0', N'91F9EE76-CF76-4120-90A4-9F0C9CF1418B', N'成薇', N'2015-11-18 16:39:26.397', N'2015-11-18 16:39:26.397', N'91F9EE76-CF76-4120-90A4-9F0C9CF1418B', N'成薇', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'B87F57E0-8014-4F5F-A123-4172971844E4', N'C866B5C7-3493-4F0E-B7BA-6FC18DC67DBF', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'宁波长中模具有限公司地块', N'东至兴宁路,南至客运总站,西至变电所,北至和兴房地产有限公司', N'.00', N'7652.00', N'7652.00', N'0', N'1', N'1', N'', N'0', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'1CAD7A50-8843-4599-9BE3-5656635111B8', N'4CEC723E-2BF3-4446-B282-93D816935762', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'西门5#地块', N'东至环城西路1弄——二亩园巷1号、16号、小北门路84弄5号、兴宁南路252弄9号、7号;南至大夫第巷;西至水亭庙巷——环城西路23弄;北至环城西路。', N'20451.00', N'1987.00', N'22438.00', N'184', N'2', N'186', N'海锦苑,郁金花园', N'50', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'B416AFF6-8148-4CEB-817B-649F8D6BF3FA', N'0416346B-956A-4396-8F03-28A04436A6E8', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'宁海化工制品提炼有限公司地块', N'东至宁海高速匝道西侧田,南至后畈王田,西至后岩村田,北至下洋葛田。', N'.00', N'400.00', N'400.00', N'0', N'1', N'1', N'', N'0', N'15E6E87F-A9AA-4C84-9D73-3D3E0B31148D', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'B5DA4ECE-8DE4-488C-B831-6F8B3E78B6B1', N'F143DC29-614F-4F87-9F6E-0C129AB22F82', N'03AACEB6-DEA1-4D75-A1B0-A37F435333E0', N'庵东振东农贸市场地块', N'东至振东村农民房,西至历崔公路,南至庵崇公路,北至振东村农民房', N'.00', N'3334.00', N'3334.00', N'0', N'1', N'1', N'', N'0', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'66F729A3-334F-43BF-8388-F748D8F9673A', N'陆承', N'2015-11-24 10:13:35.570', N'2015-11-24 10:13:35.570', N'66F729A3-334F-43BF-8388-F748D8F9673A', N'陆承', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'B8F8F001-E7F6-4607-8371-7EFA6053314C', N'A463FDFD-5DE0-4716-AAC9-1700A239F687', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'西门6#地块', N'东至环城西路23弄;南至城西小学;西至柔石北路;北至环城西路。', N'12177.00', N'577.00', N'12754.00', N'96', N'10', N'106', N'海锦苑,郁金花园', N'50', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'D78E54A2-2E3A-4ACC-B694-C5A45A5F91D7', N'1911BC2E-D57A-4AAE-A385-CDC4B4C41F5D', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'山河岭6-2地块', N'东至崇寺山,南至崇寺山,西至214省道,北至西门村土地。', N'.00', N'5000.00', N'5000.00', N'0', N'4', N'4', N'', N'0', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
INSERT INTO [dbo].[PlanProjectHistory] VALUES (N'3881D117-9E90-49AE-AD53-E3E9D3B070A7', N'0A5EFDFC-176C-4A30-A07E-41A8014FC60E', N'1DC81AEC-382A-4748-A0CA-BA996FA4C447', N'水角凌1#地块', N'东至县前巷36号(县府宿舍)至中大街42-1号;南至兴宁南路291弄1号(糖烟酒公司宿舍)、市门头巷4号至中大街42-1号;西至兴宁南路291弄1号(糖烟酒公司宿舍)、兴宁南路279号、兴宁南路263号、后井巷3号、县后巷2号至县后巷36号(县府宿舍);北至县后巷2号至县后巷36号(县府宿舍)。', N'15000.00', N'13000.00', N'28000.00', N'177', N'29', N'206', N'新世纪环岛D3地块住宅小区', N'50', N'B8CF5533-2090-4E78-A0E3-17E0766AD2AB', NULL, N'0', N'', N'0', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', N'2015-12-01 15:16:20.433', N'2015-12-01 15:16:20.433', N'4DEFBD35-31A6-4EAD-B71C-970101C174B4', N'胡靖', NULL)
|
||||
GO
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table PlanProjectHistory
|
||||
-- ----------------------------
|
||||
ALTER TABLE [dbo].[PlanProjectHistory] ADD CONSTRAINT [PK_PlanProjectHistory] PRIMARY KEY CLUSTERED ([ID])
|
||||
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
|
||||
ON [PRIMARY]
|
||||
GO
|
||||
|
||||
130
sql/PushZlb.sql
Normal file
130
sql/PushZlb.sql
Normal file
@@ -0,0 +1,130 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : 118.178.224.202-SqlServer
|
||||
Source Server Type : SQL Server
|
||||
Source Server Version : 10501600
|
||||
Source Host : 118.178.224.202:1433
|
||||
Source Catalog : Nbcqb2
|
||||
Source Schema : dbo
|
||||
|
||||
Target Server Type : SQL Server
|
||||
Target Server Version : 10501600
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 26/09/2021 16:43:56
|
||||
*/
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for PushZlb
|
||||
-- ----------------------------
|
||||
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[PushZlb]') AND type IN ('U'))
|
||||
DROP TABLE [dbo].[PushZlb]
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[PushZlb] (
|
||||
[ID] nvarchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL,
|
||||
[PrjId] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL,
|
||||
[IsNowDo] int NOT NULL,
|
||||
[IsAutoDo] int NOT NULL,
|
||||
[AutoDoTime] varchar(200) COLLATE Chinese_PRC_CI_AS NULL,
|
||||
[IsDeleted] int DEFAULT ((0)) NOT NULL,
|
||||
[CreateTime] datetime DEFAULT (getdate()) NOT NULL,
|
||||
[IsProcessed] int DEFAULT ((0)) NOT NULL,
|
||||
[LastProcessTime] datetime NULL,
|
||||
[ProcessCount] int NULL,
|
||||
[IsError] int NULL,
|
||||
[ErrorReason] varchar(500) COLLATE Chinese_PRC_CI_AS NULL
|
||||
)
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[PushZlb] SET (LOCK_ESCALATION = TABLE)
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'项目ID',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'PrjId'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'是否现在就做,1是0否',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'IsNowDo'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'是否自动做,1是0否',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'IsAutoDo'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'自动执行频率表达式',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'AutoDoTime'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'是否作废,1是0否',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'IsDeleted'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'创建时间',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'CreateTime'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'是否已处理,1是0否',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'IsProcessed'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'最后一次执行时间',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'LastProcessTime'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'到现在执行了几次',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'ProcessCount'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'是否出错, 1是0否',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'IsError'
|
||||
GO
|
||||
|
||||
EXEC sp_addextendedproperty
|
||||
'MS_Description', N'错误记录',
|
||||
'SCHEMA', N'dbo',
|
||||
'TABLE', N'PushZlb',
|
||||
'COLUMN', N'ErrorReason'
|
||||
GO
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table PushZlb
|
||||
-- ----------------------------
|
||||
ALTER TABLE [dbo].[PushZlb] ADD CONSTRAINT [PK__PushZlb__3214EC277BC631F6] PRIMARY KEY CLUSTERED ([ID])
|
||||
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = OFF, ALLOW_PAGE_LOCKS = OFF)
|
||||
ON [PRIMARY]
|
||||
GO
|
||||
|
||||
7849
sql/all.sql
Normal file
7849
sql/all.sql
Normal file
File diff suppressed because it is too large
Load Diff
49
sql/readme.txt
Normal file
49
sql/readme.txt
Normal file
@@ -0,0 +1,49 @@
|
||||
将PushZlb表创建在正式库中,
|
||||
需要推送时插入一条记录
|
||||
手动推送插入数据如下:
|
||||
ID Guid
|
||||
PrjId 项目ID
|
||||
IsNowDo 写1
|
||||
IsAutoDo 写0
|
||||
AutoDoTime 手动推送时 写空
|
||||
IsProcessed 写0, 默认0
|
||||
IsDeleted 写0 默认0
|
||||
CreateTime 当前时间, 默认当前时间
|
||||
|
||||
自动推送插入数据如下:
|
||||
ID Guid
|
||||
PrjId 项目ID
|
||||
IsNowDo 写1
|
||||
IsAutoDo 写1
|
||||
AutoDoTime 写频率表达式 , 值范围在下面
|
||||
IsProcessed 写0, 默认0
|
||||
IsDeleted 写0 默认0
|
||||
CreateTime 当前时间, 默认当前时间
|
||||
|
||||
|
||||
频率表达式如下:
|
||||
* * * * * * 每秒
|
||||
* * * * * 每分钟
|
||||
0 0 * * * ? 每小时
|
||||
0 23 ? * MON-FRI 晚上 11:00,周一至周五
|
||||
*/45 * * * * * 每 45 秒
|
||||
*/5 * * * * 每 5 分钟
|
||||
0 0/10 * * * ? 每 10 分钟
|
||||
0-10 11 * * * 上午 11:00 至 11:10 之间的每一分钟
|
||||
* * * 3 * 每分钟,只在 3 月份
|
||||
* * * 3,6 * 每分钟,只在 3 月和 6 月
|
||||
*/5 15 * * MON-FRI 每 5 分钟,下午 0:00 至 03:59,周一至周五
|
||||
|
||||
占位符 对应表达式 占位符代表含义
|
||||
@every_second * * * * * * 一秒钟跑一次
|
||||
@every_minute * * * * * 在分钟开始时每分钟运行一次
|
||||
@hourly 0 * * * * 在小时开始时每小时运行一次
|
||||
@daily 0 0 * * * 每天午夜运行一次
|
||||
@midnight 0 0 * * * 每天午夜运行一次
|
||||
@weekly 0 0 * * 0 周日上午午夜每周运行一次
|
||||
@monthly 0 0 1 * * 每月在每月第一天的午夜运行一次
|
||||
@yearly 0 0 1 1 * 每年 1 月 1 日午夜运行一次
|
||||
@annually 0 0 1 1 * 每年 1 月 1 日午夜运行一次
|
||||
|
||||
在线生成 Cron 表达式#
|
||||
https://cron.qqe2.com/
|
||||
Reference in New Issue
Block a user