添加字段
parent
0c28f85f49
commit
eabf8f4532
|
@ -10229,6 +10229,11 @@
|
||||||
表格问题类型
|
表格问题类型
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.ImageMarkEnum">
|
||||||
|
<summary>
|
||||||
|
影像标记
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.ClassifyType">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.ClassifyType">
|
||||||
<summary>
|
<summary>
|
||||||
分类问题类型
|
分类问题类型
|
||||||
|
@ -10585,6 +10590,11 @@
|
||||||
|
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.ImageMarkEnum">
|
||||||
|
<summary>
|
||||||
|
影像标记
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.GroupName">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.GroupName">
|
||||||
<summary>
|
<summary>
|
||||||
分组
|
分组
|
||||||
|
@ -11470,6 +11480,11 @@
|
||||||
问题英文分组
|
问题英文分组
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ImageMarkEnum">
|
||||||
|
<summary>
|
||||||
|
影像标记
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.Id">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.Id">
|
||||||
<summary>
|
<summary>
|
||||||
Id
|
Id
|
||||||
|
|
|
@ -319,6 +319,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public class ReadingTableQuestionTrialAddOrEdit
|
public class ReadingTableQuestionTrialAddOrEdit
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 影像标记
|
||||||
|
/// </summary>
|
||||||
|
public ImageMark? ImageMarkEnum { get; set; }
|
||||||
|
|
||||||
public Guid? ClassifyTableQuestionId { get; set; }
|
public Guid? ClassifyTableQuestionId { get; set; }
|
||||||
|
|
||||||
|
@ -924,7 +928,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public class ReadingQuestionTrialView
|
public class ReadingQuestionTrialView
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 影像标记
|
||||||
|
/// </summary>
|
||||||
|
public ImageMark? ImageMarkEnum { get; set; }
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
|
|
||||||
[Comment("导出结果")]
|
[Comment("导出结果")]
|
||||||
|
@ -2345,6 +2352,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public class AddOrUpdateReadingQuestionTrialInDto
|
public class AddOrUpdateReadingQuestionTrialInDto
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 影像标记
|
||||||
|
/// </summary>
|
||||||
|
public ImageMark? ImageMarkEnum { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id
|
/// Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -425,6 +425,23 @@ namespace IRaCIS.Core.Domain.Share
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 影像标记
|
||||||
|
/// </summary>
|
||||||
|
public enum ImageMark
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 不需要
|
||||||
|
/// </summary>
|
||||||
|
NotRequire = 0,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 必须
|
||||||
|
/// </summary>
|
||||||
|
Must = 1,
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 导出结果
|
/// 导出结果
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -279,6 +279,11 @@ public class ReadingQuestionTrial : BaseAddAuditEntity
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CDISCCode { get; set; } = string.Empty;
|
public string CDISCCode { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 影像标记
|
||||||
|
/// </summary>
|
||||||
|
public ImageMark? ImageMarkEnum { get; set; }
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public List<ExportResult> ExportResult
|
public List<ExportResult> ExportResult
|
||||||
{
|
{
|
||||||
|
|
|
@ -182,6 +182,11 @@ public class ReadingTableQuestionTrial : BaseAddAuditEntity
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CDISCCode { get; set; } = string.Empty;
|
public string CDISCCode { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 影像标记
|
||||||
|
/// </summary>
|
||||||
|
public ImageMark? ImageMarkEnum { get; set; }
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public List<ExportResult> ExportResult
|
public List<ExportResult> ExportResult
|
||||||
{
|
{
|
||||||
|
|
19461
IRaCIS.Core.Infra.EFCore/Migrations/20250527022612_ImageMarkEnum.Designer.cs
generated
Normal file
19461
IRaCIS.Core.Infra.EFCore/Migrations/20250527022612_ImageMarkEnum.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,38 @@
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class ImageMarkEnum : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AddColumn<int>(
|
||||||
|
name: "ImageMarkEnum",
|
||||||
|
table: "ReadingTableQuestionTrial",
|
||||||
|
type: "int",
|
||||||
|
nullable: true);
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<int>(
|
||||||
|
name: "ImageMarkEnum",
|
||||||
|
table: "ReadingQuestionTrial",
|
||||||
|
type: "int",
|
||||||
|
nullable: true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "ImageMarkEnum",
|
||||||
|
table: "ReadingTableQuestionTrial");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "ImageMarkEnum",
|
||||||
|
table: "ReadingQuestionTrial");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -6251,6 +6251,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.HasColumnType("int")
|
.HasColumnType("int")
|
||||||
.HasComment("图片数量");
|
.HasComment("图片数量");
|
||||||
|
|
||||||
|
b.Property<int?>("ImageMarkEnum")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
b.Property<bool>("IsAdditional")
|
b.Property<bool>("IsAdditional")
|
||||||
.HasColumnType("bit");
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
@ -7038,6 +7041,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.HasColumnType("int")
|
.HasColumnType("int")
|
||||||
.HasComment("图片数量");
|
.HasComment("图片数量");
|
||||||
|
|
||||||
|
b.Property<int?>("ImageMarkEnum")
|
||||||
|
.HasColumnType("int");
|
||||||
|
|
||||||
b.Property<bool>("IsCopy")
|
b.Property<bool>("IsCopy")
|
||||||
.HasColumnType("bit")
|
.HasColumnType("bit")
|
||||||
.HasComment("复制病灶的时候 是否复制这个问题");
|
.HasComment("复制病灶的时候 是否复制这个问题");
|
||||||
|
|
Loading…
Reference in New Issue