8 changed files with 15205 additions and 185 deletions
-
58src/Shentun.Peis.Application.Contracts/ImportLisResults/ImportResultByLisRequestNoInputDto.cs
-
202src/Shentun.Peis.Application/BeiJingMZAKExportDatas/BeiJingMZAKExportDataAppService.cs
-
56src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs
-
30src/Shentun.Peis.Domain/ColumnReferenceCodes/ColumnReferenceCodeManager.cs
-
2src/Shentun.Peis.Domain/PatientRegisters/PatientRegister.cs
-
14999src/Shentun.Peis.EntityFrameworkCore/Migrations/20240623084107_init20240623001.Designer.cs
-
39src/Shentun.Peis.EntityFrameworkCore/Migrations/20240623084107_init20240623001.cs
-
4src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs
@ -0,0 +1,58 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.ImportLisResults |
|||
{ |
|||
public class ImportResultByLisRequestNoInputDto |
|||
{ |
|||
public string LisRequestNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目编号
|
|||
/// </summary>
|
|||
public string ItemId { get; set; } |
|||
/// <summary>
|
|||
/// 项目名称
|
|||
/// </summary>
|
|||
public string ItemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 结果
|
|||
/// </summary>
|
|||
public string? Result { get; set; } |
|||
/// <summary>
|
|||
/// 单位
|
|||
/// </summary>
|
|||
|
|||
public string? Unit { get; set; } |
|||
/// <summary>
|
|||
/// 参考范围
|
|||
/// </summary>
|
|||
|
|||
public string? ReferenceRangeValue { get; set; } |
|||
/// <summary>
|
|||
/// 危急值范围
|
|||
/// </summary>
|
|||
|
|||
public string? CriticalRangeValue { get; set; } |
|||
/// <summary>
|
|||
/// 危急值
|
|||
/// </summary>
|
|||
|
|||
public string? CriticalValue { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 检查医生
|
|||
/// </summary>
|
|||
|
|||
public string? CheckDoctorName { get; set; } |
|||
/// <summary>
|
|||
/// 检查日期
|
|||
/// </summary>
|
|||
|
|||
public DateTime? CheckDate { get; set; } |
|||
|
|||
|
|||
} |
|||
} |
|||
14999
src/Shentun.Peis.EntityFrameworkCore/Migrations/20240623084107_init20240623001.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,39 @@ |
|||
using Microsoft.EntityFrameworkCore.Migrations; |
|||
|
|||
#nullable disable |
|||
|
|||
namespace Shentun.Peis.Migrations |
|||
{ |
|||
public partial class init20240623001 : Migration |
|||
{ |
|||
protected override void Up(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.AlterColumn<string>( |
|||
name: "patient_name", |
|||
table: "patient_register", |
|||
type: "character varying(50)", |
|||
maxLength: 50, |
|||
nullable: false, |
|||
comment: "姓名", |
|||
oldClrType: typeof(string), |
|||
oldType: "character varying(20)", |
|||
oldMaxLength: 20, |
|||
oldComment: "姓名"); |
|||
} |
|||
|
|||
protected override void Down(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.AlterColumn<string>( |
|||
name: "patient_name", |
|||
table: "patient_register", |
|||
type: "character varying(20)", |
|||
maxLength: 20, |
|||
nullable: false, |
|||
comment: "姓名", |
|||
oldClrType: typeof(string), |
|||
oldType: "character varying(50)", |
|||
oldMaxLength: 50, |
|||
oldComment: "姓名"); |
|||
} |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue