添加字段
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
4d7d42753f
commit
ef95cdd4ec
|
|
@ -672,6 +672,23 @@ namespace IRaCIS.Core.Domain.Share
|
|||
Acknowledgement = 1
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public enum CriterionGroup
|
||||
{
|
||||
/// <summary>
|
||||
/// 非肿瘤
|
||||
/// </summary>
|
||||
Nontumorous = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 肿瘤
|
||||
/// </summary>
|
||||
Tumor = 1,
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 标准类型
|
||||
|
|
|
|||
|
|
@ -74,6 +74,11 @@ public class ReadingQuestionCriterionTrial : BaseAddAuditEntity
|
|||
[Comment("标准类型")]
|
||||
public CriterionType CriterionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public CriterionGroup CriterionGroup { get; set; }
|
||||
|
||||
[Comment("是否加急")]
|
||||
public bool IsUrgent { get; set; } = false;
|
||||
|
||||
|
|
@ -160,6 +165,7 @@ public class ReadingQuestionCriterionTrial : BaseAddAuditEntity
|
|||
public ReadingDivisionEnum ReadingDivisionEnum { get; set; } = ReadingDivisionEnum.OnlySR;
|
||||
|
||||
public PIReadingScopenEnum PIReadingScopenEnum { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public enum ReadingImageDownload
|
||||
|
|
|
|||
19075
IRaCIS.Core.Infra.EFCore/Migrations/20250905071113_CriterionGroup.Designer.cs
generated
Normal file
19075
IRaCIS.Core.Infra.EFCore/Migrations/20250905071113_CriterionGroup.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,29 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class CriterionGroup : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "CriterionGroup",
|
||||
table: "ReadingQuestionCriterionTrial",
|
||||
type: "int",
|
||||
nullable: false,
|
||||
defaultValue: 0);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "CriterionGroup",
|
||||
table: "ReadingQuestionCriterionTrial");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -5797,6 +5797,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
b.Property<Guid>("CreateUserId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<int>("CriterionGroup")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("CriterionModalitys")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
|
|
|
|||
Loading…
Reference in New Issue