Browse Source

云胶片

master
wxd 12 months ago
parent
commit
75d384ead4
  1. 8177
      src/Shentun.WebPeis.EntityFrameworkCore/Migrations/20241121073128_add_register_check_is_pacs_check.Designer.cs
  2. 52
      src/Shentun.WebPeis.EntityFrameworkCore/Migrations/20241121073128_add_register_check_is_pacs_check.cs
  3. 16
      src/Shentun.WebPeis.EntityFrameworkCore/Migrations/WebPeisDbContextModelSnapshot.cs

8177
src/Shentun.WebPeis.EntityFrameworkCore/Migrations/20241121073128_add_register_check_is_pacs_check.Designer.cs
File diff suppressed because it is too large
View File

52
src/Shentun.WebPeis.EntityFrameworkCore/Migrations/20241121073128_add_register_check_is_pacs_check.cs

@ -0,0 +1,52 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Shentun.WebPeis.Migrations
{
/// <inheritdoc />
public partial class add_register_check_is_pacs_check : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<char>(
name: "is_pacs_check",
table: "register_check",
type: "character(1)",
maxLength: 1,
nullable: false,
defaultValueSql: "'N'",
comment: "是否pacs检查 dicom上传为准");
migrationBuilder.AddColumn<DateTime>(
name: "pacs_check_date",
table: "register_check",
type: "timestamp with time zone",
nullable: true);
migrationBuilder.AddColumn<DateTime>(
name: "pacs_upload_date",
table: "register_check",
type: "timestamp with time zone",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "is_pacs_check",
table: "register_check");
migrationBuilder.DropColumn(
name: "pacs_check_date",
table: "register_check");
migrationBuilder.DropColumn(
name: "pacs_upload_date",
table: "register_check");
}
}
}

16
src/Shentun.WebPeis.EntityFrameworkCore/Migrations/WebPeisDbContextModelSnapshot.cs

@ -3960,6 +3960,14 @@ namespace Shentun.WebPeis.Migrations
.HasColumnName("is_audit") .HasColumnName("is_audit")
.HasComment("是审核"); .HasComment("是审核");
b.Property<char>("IsPacsCheck")
.ValueGeneratedOnAdd()
.HasMaxLength(1)
.HasColumnType("character(1)")
.HasColumnName("is_pacs_check")
.HasDefaultValueSql("'N'")
.HasComment("是否pacs检查 dicom上传为准");
b.Property<DateTime?>("LastModificationTime") b.Property<DateTime?>("LastModificationTime")
.HasColumnType("timestamp(6) without time zone") .HasColumnType("timestamp(6) without time zone")
.HasColumnName("last_modification_time"); .HasColumnName("last_modification_time");
@ -3968,6 +3976,14 @@ namespace Shentun.WebPeis.Migrations
.HasColumnType("uuid") .HasColumnType("uuid")
.HasColumnName("last_modifier_id"); .HasColumnName("last_modifier_id");
b.Property<DateTime?>("PacsCheckDate")
.HasColumnType("timestamp with time zone")
.HasColumnName("pacs_check_date");
b.Property<DateTime?>("PacsUploadDate")
.HasColumnType("timestamp with time zone")
.HasColumnName("pacs_upload_date");
b.Property<Guid>("PatientRegisterId") b.Property<Guid>("PatientRegisterId")
.HasColumnType("uuid") .HasColumnType("uuid")
.HasColumnName("patient_register_id"); .HasColumnName("patient_register_id");

Loading…
Cancel
Save