修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-10-21 13:24:30 +08:00
parent 7e9bf65f9f
commit b8e3e83b80
6 changed files with 41027 additions and 8 deletions

View File

@ -122,10 +122,10 @@ public class FrontAuditConfig : BaseFullAuditEntity
public string ValueCN { get; set; } = null!;
/// <summary>
/// 适用的标准
/// </summary>
public List<CriterionType> ApplyCriterionList { get; set; } = new List<CriterionType>() { };
///// <summary>
///// 适用的标准
///// </summary>
//public List<CriterionType> ApplyCriterionList { get; set; } = new List<CriterionType>() { };
/// <summary>
/// 是否默认选择

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,22 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class ApplyCriterionList1 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,29 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class ApplyCriterionList2 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ApplyCriterionList",
table: "FrontAuditConfig");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ApplyCriterionList",
table: "FrontAuditConfig",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
}
}
}

View File

@ -2719,10 +2719,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<string>("ApplyCriterionList")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("ChildDataEnLabel")
.IsRequired()
.HasMaxLength(400)