添加字段

Test_IRC_Net8
he 2025-12-02 11:27:11 +08:00
parent 4955a24d6f
commit 43d1a94f22
6 changed files with 21376 additions and 1 deletions

View File

@ -16068,7 +16068,7 @@
生效通知 生效通知
</summary> </summary>
</member> </member>
<member name="M:IRaCIS.Core.Application.MassTransit.Recurring.TrialDocumentPublishEventConsumer.#ctor(IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.ReadingQuestionCriterionTrial},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.VisitTask},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialDocument},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.IdentityUser},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialIdentityUser},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.Dictionary},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialUserRole},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.EmailNoticeConfig},Microsoft.Extensions.Options.IOptionsMonitor{IRaCIS.Core.Domain.Share.SystemEmailSendConfig})"> <member name="M:IRaCIS.Core.Application.MassTransit.Recurring.TrialDocumentPublishEventConsumer.#ctor(IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.ReadingQuestionCriterionTrial},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.VisitTask},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialDocument},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.IdentityUser},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.Trial},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialIdentityUser},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.Dictionary},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialUserRole},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.EmailNoticeConfig},Microsoft.Extensions.Options.IOptionsMonitor{IRaCIS.Core.Domain.Share.SystemEmailSendConfig})">
<summary> <summary>
生效通知 生效通知
</summary> </summary>

View File

@ -302,6 +302,11 @@ public class VisitTask : BaseFullAuditEntity
/// </summary> /// </summary>
public bool IsViewStudyPart { get; set; } = false; public bool IsViewStudyPart { get; set; } = false;
/// <summary>
/// 是否复制病灶答案
/// </summary>
public bool IsCopyLesionAnswer { get; set; } = false;
#region 完全随机增加字段 #region 完全随机增加字段
[Comment("完全随机阅片号")] [Comment("完全随机阅片号")]

View File

@ -127,4 +127,9 @@ public class ReadingTableAnswerRowInfo : BaseFullDeleteAuditEntity
[Comment("标记工具")] [Comment("标记工具")]
public string MarkTool { get; set; } = string.Empty; public string MarkTool { get; set; } = string.Empty;
/// <summary>
/// 病灶的身份Id 这个是病灶复制答案需要的
/// </summary>
public Guid? IdentityRowId { get; set; }
} }

File diff suppressed because it is too large Load Diff

View File

@ -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");
}
}
}

View File

@ -7215,6 +7215,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
.HasColumnType("nvarchar(400)") .HasColumnType("nvarchar(400)")
.HasComment("来自于哪个标记"); .HasComment("来自于哪个标记");
b.Property<Guid?>("IdentityRowId")
.HasColumnType("uniqueidentifier");
b.Property<Guid?>("InstanceId") b.Property<Guid?>("InstanceId")
.HasColumnType("uniqueidentifier"); .HasColumnType("uniqueidentifier");
@ -15725,6 +15728,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
.HasColumnType("bit") .HasColumnType("bit")
.HasComment("临床数据是否签名"); .HasComment("临床数据是否签名");
b.Property<bool>("IsCopyLesionAnswer")
.HasColumnType("bit");
b.Property<bool>("IsFrontTaskNeedSignButNotSign") b.Property<bool>("IsFrontTaskNeedSignButNotSign")
.HasColumnType("bit") .HasColumnType("bit")
.HasComment("前序任务需要签名 但是未签名"); .HasComment("前序任务需要签名 但是未签名");