Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
98f7ab8c02
|
|
@ -308,6 +308,11 @@ public class VisitTask : BaseFullAuditEntity
|
|||
/// </summary>
|
||||
public bool IsViewStudyPart { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 是否复制病灶答案
|
||||
/// </summary>
|
||||
public bool IsCopyLesionAnswer { get; set; } = false;
|
||||
|
||||
#region 完全随机增加字段
|
||||
|
||||
[Comment("完全随机阅片号")]
|
||||
|
|
|
|||
|
|
@ -127,4 +127,9 @@ public class ReadingTableAnswerRowInfo : BaseFullDeleteAuditEntity
|
|||
|
||||
[Comment("标记工具")]
|
||||
public string MarkTool { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 病灶的身份Id 这个是病灶复制答案需要的
|
||||
/// </summary>
|
||||
public Guid? IdentityRowId { get; set; }
|
||||
}
|
||||
|
|
|
|||
21319
IRaCIS.Core.Infra.EFCore/Migrations/20251202032624_CopyLesionAnswer.Designer.cs
generated
Normal file
21319
IRaCIS.Core.Infra.EFCore/Migrations/20251202032624_CopyLesionAnswer.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,40 @@
|
|||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class CopyLesionAnswer : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "IsCopyLesionAnswer",
|
||||
table: "VisitTask",
|
||||
type: "bit",
|
||||
nullable: false,
|
||||
defaultValue: false);
|
||||
|
||||
migrationBuilder.AddColumn<Guid>(
|
||||
name: "IdentityRowId",
|
||||
table: "ReadingTableAnswerRowInfo",
|
||||
type: "uniqueidentifier",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "IsCopyLesionAnswer",
|
||||
table: "VisitTask");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "IdentityRowId",
|
||||
table: "ReadingTableAnswerRowInfo");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -7215,6 +7215,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
.HasColumnType("nvarchar(400)")
|
||||
.HasComment("来自于哪个标记");
|
||||
|
||||
b.Property<Guid?>("IdentityRowId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<Guid?>("InstanceId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
|
|
@ -15725,6 +15728,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
.HasColumnType("bit")
|
||||
.HasComment("临床数据是否签名");
|
||||
|
||||
b.Property<bool>("IsCopyLesionAnswer")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<bool>("IsFrontTaskNeedSignButNotSign")
|
||||
.HasColumnType("bit")
|
||||
.HasComment("前序任务需要签名 但是未签名");
|
||||
|
|
|
|||
Loading…
Reference in New Issue