7 changed files with 16212 additions and 1 deletions
-
64src/Shentun.Peis.Application.Contracts/PacsBusiness/GetPacsDicomServiceDataByPatientRegisterIdDto.cs
-
15src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportPacsDicomServiceDataInputDto.cs
-
58src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
-
1src/Shentun.Peis.Domain/DicomFileDetails/DicomFileDetail.cs
-
16049src/Shentun.Peis.EntityFrameworkCore/Migrations/20241024093825_update_dicom_file_detail_register_check_id.Designer.cs
-
25src/Shentun.Peis.EntityFrameworkCore/Migrations/20241024093825_update_dicom_file_detail_register_check_id.cs
-
1src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs
@ -0,0 +1,64 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations.Schema; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.PacsBusiness |
||||
|
{ |
||||
|
public class GetPacsDicomServiceDataByPatientRegisterIdDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 姓名
|
||||
|
/// </summary>
|
||||
|
public string PatientName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 项目名称
|
||||
|
/// </summary>
|
||||
|
public string AsbitemName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// registerCheck表ID
|
||||
|
/// </summary>
|
||||
|
public Guid RegisterCheckId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实例ID
|
||||
|
/// </summary>
|
||||
|
public Guid InstanceId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 患者ID
|
||||
|
/// </summary>
|
||||
|
public Guid ParentPatientId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 系列ID
|
||||
|
/// </summary>
|
||||
|
public Guid ParentSeriesId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 研究ID
|
||||
|
/// </summary>
|
||||
|
public Guid ParentStudyId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 路径
|
||||
|
/// </summary>
|
||||
|
public string Path { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 文件名称
|
||||
|
/// </summary>
|
||||
|
public string FileName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 状态
|
||||
|
/// </summary>
|
||||
|
public string Status { get; set; } |
||||
|
|
||||
|
public int DisplayOrder { get; set; } |
||||
|
|
||||
|
} |
||||
|
} |
||||
16049
src/Shentun.Peis.EntityFrameworkCore/Migrations/20241024093825_update_dicom_file_detail_register_check_id.Designer.cs
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,25 @@ |
|||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
|
||||
|
#nullable disable |
||||
|
|
||||
|
namespace Shentun.Peis.Migrations |
||||
|
{ |
||||
|
public partial class update_dicom_file_detail_register_check_id : Migration |
||||
|
{ |
||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.RenameColumn( |
||||
|
name: "RegisterCheckId", |
||||
|
table: "dicom_file_detail", |
||||
|
newName: "register_check_id"); |
||||
|
} |
||||
|
|
||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.RenameColumn( |
||||
|
name: "register_check_id", |
||||
|
table: "dicom_file_detail", |
||||
|
newName: "RegisterCheckId"); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue