13 changed files with 15837 additions and 20 deletions
-
28src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportPacsDicomDataInputDto.cs
-
29src/Shentun.Peis.Application.Contracts/RegisterCheckPictures/UpdateRegisterCheckPictureInputDto.cs
-
49src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
-
45src/Shentun.Peis.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
-
4src/Shentun.Peis.DbMigrator/appsettings.json
-
6src/Shentun.Peis.Domain/RegisterCheckPacsPictures/RegisterCheckPacsPicture.cs
-
8src/Shentun.Peis.Domain/RegisterCheckPacss/RegisterCheckPacs.cs
-
15619src/Shentun.Peis.EntityFrameworkCore/Migrations/20240909023810_update_pacs_local_path_name.Designer.cs
-
37src/Shentun.Peis.EntityFrameworkCore/Migrations/20240909023810_update_pacs_local_path_name.cs
-
10src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs
-
12src/Shentun.Peis.HttpApi.Host/PeisHttpApiHostModule.cs
-
9src/Shentun.Peis.HttpApi.Host/VirtualPath/MyFileProvider.cs
-
1src/Shentun.Peis.HttpApi.Host/appsettings.json
@ -0,0 +1,28 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.PacsBusiness |
||||
|
{ |
||||
|
public class ImportPacsDicomDataInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 条码号
|
||||
|
/// </summary>
|
||||
|
public string RegisterCheckNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 资源集合
|
||||
|
/// </summary>
|
||||
|
public List<ImportPacsDicomDataInputDetailDto> Details { get; set; } |
||||
|
} |
||||
|
|
||||
|
public class ImportPacsDicomDataInputDetailDto |
||||
|
{ |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 文件路径 服务器上的绝对路径
|
||||
|
/// </summary>
|
||||
|
public string FilePathName { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,29 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.RegisterCheckPictures |
||||
|
{ |
||||
|
public class UpdateRegisterCheckPictureInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 主键ID
|
||||
|
/// </summary>
|
||||
|
public Guid RegisterCheckPictureId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 文件名称
|
||||
|
/// </summary>
|
||||
|
public string FileName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 本地地址
|
||||
|
/// </summary>
|
||||
|
public string LocalPathName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 图片base64字符串
|
||||
|
/// </summary>
|
||||
|
public string PictureBaseStr { get; set; } |
||||
|
} |
||||
|
} |
||||
15619
src/Shentun.Peis.EntityFrameworkCore/Migrations/20240909023810_update_pacs_local_path_name.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,37 @@ |
|||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
|
||||
|
#nullable disable |
||||
|
|
||||
|
namespace Shentun.Peis.Migrations |
||||
|
{ |
||||
|
public partial class update_pacs_local_path_name : Migration |
||||
|
{ |
||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "local_path_name", |
||||
|
table: "register_check_pacs_picture", |
||||
|
type: "character varying(200)", |
||||
|
maxLength: 200, |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "local_path_name", |
||||
|
table: "register_check_pacs", |
||||
|
type: "character varying(200)", |
||||
|
maxLength: 200, |
||||
|
nullable: true); |
||||
|
} |
||||
|
|
||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "local_path_name", |
||||
|
table: "register_check_pacs_picture"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "local_path_name", |
||||
|
table: "register_check_pacs"); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue