移除HIR后端下载字段
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2024-11-14 17:00:11 +08:00
parent 0af3c5ab8b
commit b68d3a5d99
5 changed files with 18713 additions and 15 deletions

View File

@ -43,7 +43,7 @@ namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
public List<InstanceBasicInfo> InstanceInfoList { get; set; } = new List<InstanceBasicInfo>(); public List<InstanceBasicInfo> InstanceInfoList { get; set; } = new List<InstanceBasicInfo>();
public List<Guid> InstanceList => InstanceInfoList.Select(t => t.Id).ToList(); public List<Guid> InstanceList => InstanceInfoList.Select(t => t.Id).ToList();
public List<string> InstancePathList => InstanceInfoList.Select(t => t.Path).ToList(); public List<string> InstancePathList => InstanceInfoList.Select(t => t.Path+$"?instanceId={t.Id}").ToList();
public bool IsExistMutiFrames => InstanceInfoList.Any(t => t.NumberOfFrames > 1); public bool IsExistMutiFrames => InstanceInfoList.Any(t => t.NumberOfFrames > 1);

View File

@ -922,6 +922,8 @@ namespace IRaCIS.Application.Contracts
public string IP { get; set; } public string IP { get; set; }
public int StudyCount { get; set; }
public bool IsSuccess { get; set; } public bool IsSuccess { get; set; }
public DateTime DownloadStartTime { get; set; } public DateTime DownloadStartTime { get; set; }

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,63 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class RemoveSubjectVisitInfo : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PackState",
table: "SubjectVisit");
migrationBuilder.DropColumn(
name: "VisitImageFileCount",
table: "SubjectVisit");
migrationBuilder.DropColumn(
name: "VisitImageZipPath",
table: "SubjectVisit");
migrationBuilder.DropColumn(
name: "VisitImageZipSize",
table: "SubjectVisit");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "PackState",
table: "SubjectVisit",
type: "int",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<int>(
name: "VisitImageFileCount",
table: "SubjectVisit",
type: "int",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<string>(
name: "VisitImageZipPath",
table: "SubjectVisit",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn<long>(
name: "VisitImageZipSize",
table: "SubjectVisit",
type: "bigint",
nullable: false,
defaultValue: 0L);
}
}
}

View File

@ -8816,9 +8816,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<int>("PDState") b.Property<int>("PDState")
.HasColumnType("int"); .HasColumnType("int");
b.Property<int>("PackState")
.HasColumnType("int");
b.Property<DateTime?>("PreliminaryAuditTime") b.Property<DateTime?>("PreliminaryAuditTime")
.HasColumnType("datetime2"); .HasColumnType("datetime2");
@ -8882,17 +8879,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
.HasColumnType("int") .HasColumnType("int")
.HasComment("0 未执行 1 执行了 2 不可用"); .HasComment("0 未执行 1 执行了 2 不可用");
b.Property<int>("VisitImageFileCount")
.HasColumnType("int");
b.Property<string>("VisitImageZipPath")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<long>("VisitImageZipSize")
.HasColumnType("bigint");
b.Property<string>("VisitName") b.Property<string>("VisitName")
.IsRequired() .IsRequired()
.HasMaxLength(400) .HasMaxLength(400)