升级.net8

This commit is contained in:
dell
2024-11-14 09:01:55 +08:00
parent 48e9e27fa0
commit abf72c3d58
86 changed files with 14229 additions and 10612 deletions

View File

@ -68,7 +68,7 @@ namespace HT.Cloud.Domain.SystemManage
/// 表单参数Json
/// </summary>
/// <returns></returns>
[SugarColumn(IsNullable = true, ColumnName = "F_Content", ColumnDataType = "nvarchar(50)", ColumnDescription = "表单参数Json")]
[SugarColumn(IsNullable = true, ColumnName = "F_Content", ColumnDataType = "longtext", ColumnDescription = "表单参数Json")]
public string F_Content { get; set; }
/// <summary>

View File

@ -0,0 +1,18 @@
using SqlSugar;
namespace HT.Cloud.Domain.SystemOrganize
{
/// <summary>
/// 创 建:超级管理员
/// 日 期2023-12-25 08:54
/// 描 述:组织实体扩展类
/// </summary>
[SugarTable("sys_organize")]
[TenantAttribute("0")]
public class OrganizeExtend : OrganizeEntity
{
//使用导入错误信息
public string ErrorMsg { get; set; }
public string F_ManagerName { get; set; }
}
}

View File

@ -22,5 +22,6 @@ namespace HT.Cloud.Domain.SystemOrganize
public string F_DutyName { get; set; }
public string F_CompanyName { get; set; }
}
public string F_ManagerName { get; set; }
}
}

View File

@ -64,10 +64,10 @@ namespace HT.Cloud.Domain.SystemOrganize
[SugarColumn(IsNullable = true, ColumnName = "F_CategoryId", ColumnDataType = "nvarchar(50)", ColumnDescription = "类型")]
public string F_CategoryId { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(IsNullable = true, ColumnName = "F_ManagerId", ColumnDataType = "nvarchar(50)")]
/// <summary>
/// 部门负责人
/// </summary>
[SugarColumn(IsNullable = true, ColumnName = "F_ManagerId", ColumnDataType = "nvarchar(50)")]
public string F_ManagerId { get; set; }
/// <summary>

View File

@ -87,7 +87,7 @@ namespace HT.Cloud.Domain.SystemSecurity
/// 上次发生错误信息
/// </summary>
[Description("上次发生错误信息")]
[SugarColumn(IsNullable = true, ColumnDescription = "上次发生错误信息")]
[SugarColumn(IsNullable = true, ColumnDescription = "上次发生错误信息", ColumnDataType = "nvarchar(200)")]
public string F_LastRunErrMsg { get; set; }
/// <summary>

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@ -9,8 +9,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MiniExcel" Version="1.30.2" />
<PackageReference Include="SqlSugarCoreNoDrive" Version="5.1.4.59" />
<PackageReference Include="MiniExcel" Version="1.33.0" />
<PackageReference Include="SqlSugarCoreNoDrive" Version="5.1.4.161" />
</ItemGroup>
<ItemGroup>