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

Test_IRC_Net8
he 2025-10-21 13:32:36 +08:00
parent b8e3e83b80
commit 3cfb4556f3
2 changed files with 31 additions and 4 deletions

View File

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

View File

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