添加字段
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ef95cdd4ec
commit
a3b69d45ae
|
|
@ -10527,6 +10527,11 @@
|
|||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.CriterionGroup">
|
||||
<summary>
|
||||
标准分组
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.ExportIdentification">
|
||||
<summary>
|
||||
导出标识
|
||||
|
|
@ -10787,6 +10792,11 @@
|
|||
导出标识
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionSystemView.CriterionGroup">
|
||||
<summary>
|
||||
标准分组
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionSystemView.ClassifyType">
|
||||
<summary>
|
||||
分类问题类型
|
||||
|
|
@ -11192,6 +11202,11 @@
|
|||
分类问题类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionSystemInDto.CriterionGroup">
|
||||
<summary>
|
||||
标准分组
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionSystemInDto.ClassifyEditType">
|
||||
<summary>
|
||||
分类编辑类型 是否可编辑
|
||||
|
|
@ -11417,6 +11432,11 @@
|
|||
Id
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.CriterionGroup">
|
||||
<summary>
|
||||
标准分组
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ClassifyType">
|
||||
<summary>
|
||||
分类问题类型
|
||||
|
|
|
|||
|
|
@ -899,6 +899,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public CriterionGroup CriterionGroup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 导出标识
|
||||
/// </summary>
|
||||
|
|
@ -1212,6 +1217,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
[Comment("导出标识")]
|
||||
public ExportIdentification? ExportIdentification { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public CriterionGroup CriterionGroup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分类问题类型
|
||||
/// </summary>
|
||||
|
|
@ -1996,6 +2006,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public ClassifyType? ClassifyType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public CriterionGroup CriterionGroup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分类编辑类型 是否可编辑
|
||||
/// </summary>
|
||||
|
|
@ -2247,6 +2262,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public CriterionGroup CriterionGroup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分类问题类型
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -36,4 +36,9 @@ public class ReadingQuestionCriterionSystem : BaseAddAuditEntity
|
|||
|
||||
[Comment("是否必须全局阅片")]
|
||||
public bool IsMustGlobalReading { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 标准分组
|
||||
/// </summary>
|
||||
public CriterionGroup CriterionGroup { get; set; }
|
||||
}
|
||||
|
|
|
|||
19078
IRaCIS.Core.Infra.EFCore/Migrations/20250905071543_CriterionGroup1.Designer.cs
generated
Normal file
19078
IRaCIS.Core.Infra.EFCore/Migrations/20250905071543_CriterionGroup1.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 CriterionGroup1 : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "CriterionGroup",
|
||||
table: "ReadingQuestionCriterionSystem",
|
||||
type: "int",
|
||||
nullable: false,
|
||||
defaultValue: 0);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "CriterionGroup",
|
||||
table: "ReadingQuestionCriterionSystem");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -5732,6 +5732,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
b.Property<Guid>("CreateUserId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<int>("CriterionGroup")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("CriterionName")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
|
|
|
|||
Loading…
Reference in New Issue