撤销遮盖接口初步完成
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-21 10:37:01 +08:00
parent 8259e2fea3
commit 6bb3be17ee
8 changed files with 22198 additions and 11 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,30 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class addImageMask : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsMasked",
table: "DicomInstance",
type: "bit",
nullable: false,
defaultValue: false,
comment: "是否已经影像遮盖");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsMasked",
table: "DicomInstance");
}
}
}
@@ -1168,6 +1168,10 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<bool>("IsEncapsulated")
.HasColumnType("bit");
b.Property<bool>("IsMasked")
.HasColumnType("bit")
.HasComment("是否已经影像遮盖");
b.Property<bool>("IsReading")
.HasColumnType("bit");