Compare commits
No commits in common. "55882aa0ba31ebdd5527e426eb2cd4a440b7ad5a" and "53b2b9156f2c27c5997273a6a012c0768c3416a9" have entirely different histories.
55882aa0ba
...
53b2b9156f
|
|
@ -302,11 +302,6 @@ 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("完全随机阅片号")]
|
||||||
|
|
|
||||||
|
|
@ -127,9 +127,4 @@ 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
|
|
@ -1,40 +0,0 @@
|
||||||
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,9 +7215,6 @@ 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");
|
||||||
|
|
||||||
|
|
@ -15728,9 +15725,6 @@ 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("前序任务需要签名 但是未签名");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue