添加字段

Test_IRC_Net8
he 2025-06-03 16:12:09 +08:00
parent a05cb71e0d
commit 8b6fcf9ae1
7 changed files with 19704 additions and 0 deletions

View File

@ -10262,6 +10262,16 @@
影像标记
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.ImageTool">
<summary>
影像工具
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.ImageToolAttribute">
<summary>
影像工具属性
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.ClassifyType">
<summary>
分类问题类型
@ -10623,6 +10633,16 @@
影像标记
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.ImageTool">
<summary>
影像工具
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.ImageToolAttribute">
<summary>
影像工具属性
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.GroupName">
<summary>
分组
@ -11513,6 +11533,16 @@
影像标记
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ImageTool">
<summary>
影像工具
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ImageToolAttribute">
<summary>
影像工具属性
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.Id">
<summary>
Id

View File

@ -324,6 +324,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public ImageMark? ImageMarkEnum { get; set; }
/// <summary>
/// 影像工具
/// </summary>
public string ImageTool { get; set; } = string.Empty;
/// <summary>
/// 影像工具属性
/// </summary>
public string ImageToolAttribute { get; set; } = string.Empty;
public Guid? ClassifyTableQuestionId { get; set; }
/// <summary>
@ -932,6 +942,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 影像标记
/// </summary>
public ImageMark? ImageMarkEnum { get; set; }
/// <summary>
/// 影像工具
/// </summary>
public string ImageTool { get; set; } = string.Empty;
/// <summary>
/// 影像工具属性
/// </summary>
public string ImageToolAttribute { get; set; } = string.Empty;
public Guid Id { get; set; }
[Comment("导出结果")]
@ -2358,6 +2379,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public ImageMark? ImageMarkEnum { get; set; }
/// <summary>
/// 影像工具
/// </summary>
public string ImageTool { get; set; } = string.Empty;
/// <summary>
/// 影像工具属性
/// </summary>
public string ImageToolAttribute { get; set; } = string.Empty;
/// <summary>
/// Id
/// </summary>

View File

@ -284,6 +284,16 @@ public class ReadingQuestionTrial : BaseAddAuditEntity
/// </summary>
public ImageMark? ImageMarkEnum { get; set; }
/// <summary>
/// 影像工具
/// </summary>
public string ImageTool { get; set; } = string.Empty;
/// <summary>
/// 影像工具属性
/// </summary>
public string ImageToolAttribute { get; set; } = string.Empty;
[NotMapped]
public List<ExportResult> ExportResult
{

View File

@ -187,6 +187,16 @@ public class ReadingTableQuestionTrial : BaseAddAuditEntity
/// </summary>
public ImageMark? ImageMarkEnum { get; set; }
/// <summary>
/// 影像工具
/// </summary>
public string ImageTool { get; set; } = string.Empty;
/// <summary>
/// 影像工具属性
/// </summary>
public string ImageToolAttribute { get; set; } = string.Empty;
[NotMapped]
public List<ExportResult> ExportResult
{

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,66 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class ImageTool : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ImageTool",
table: "ReadingTableQuestionTrial",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn<string>(
name: "ImageToolAttribute",
table: "ReadingTableQuestionTrial",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn<string>(
name: "ImageTool",
table: "ReadingQuestionTrial",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn<string>(
name: "ImageToolAttribute",
table: "ReadingQuestionTrial",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ImageTool",
table: "ReadingTableQuestionTrial");
migrationBuilder.DropColumn(
name: "ImageToolAttribute",
table: "ReadingTableQuestionTrial");
migrationBuilder.DropColumn(
name: "ImageTool",
table: "ReadingQuestionTrial");
migrationBuilder.DropColumn(
name: "ImageToolAttribute",
table: "ReadingQuestionTrial");
}
}
}

View File

@ -6257,6 +6257,16 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<int?>("ImageMarkEnum")
.HasColumnType("int");
b.Property<string>("ImageTool")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<string>("ImageToolAttribute")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<bool>("IsAdditional")
.HasColumnType("bit");
@ -7047,6 +7057,16 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<int?>("ImageMarkEnum")
.HasColumnType("int");
b.Property<string>("ImageTool")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<string>("ImageToolAttribute")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<bool>("IsCopy")
.HasColumnType("bit")
.HasComment("复制病灶的时候 是否复制这个问题");