添加字段
parent
4955a24d6f
commit
43d1a94f22
|
|
@ -16068,7 +16068,7 @@
|
|||
生效通知
|
||||
</summary>
|
||||
</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>
|
||||
|
|
|
|||
|
|
@ -302,6 +302,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