移除HIR后端下载字段
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
0af3c5ab8b
commit
b68d3a5d99
|
@ -43,7 +43,7 @@ namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
|
|||
public List<InstanceBasicInfo> InstanceInfoList { get; set; } = new List<InstanceBasicInfo>();
|
||||
|
||||
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);
|
||||
|
||||
|
|
|
@ -922,6 +922,8 @@ namespace IRaCIS.Application.Contracts
|
|||
|
||||
public string IP { get; set; }
|
||||
|
||||
public int StudyCount { get; set; }
|
||||
|
||||
public bool IsSuccess { get; set; }
|
||||
|
||||
public DateTime DownloadStartTime { get; set; }
|
||||
|
|
18647
IRaCIS.Core.Infra.EFCore/Migrations/20241114085858_RemoveSubjectVisitInfo.Designer.cs
generated
Normal file
18647
IRaCIS.Core.Infra.EFCore/Migrations/20241114085858_RemoveSubjectVisitInfo.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -8816,9 +8816,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
b.Property<int>("PDState")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("PackState")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime?>("PreliminaryAuditTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
|
@ -8882,17 +8879,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
.HasColumnType("int")
|
||||
.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")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
|
|
Loading…
Reference in New Issue