wxd 11 months ago
parent
commit
41771a4c33
  1. 2
      src/Shentun.Peis.Application.Contracts/Reports/0005/Rpt0005HBsAgAsbitem.cs
  2. 4
      src/Shentun.Peis.DbMigrator/appsettings.json
  3. 16260
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20241204051235_add_register_check_submission_time.Designer.cs
  4. 36
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20241204051235_add_register_check_submission_time.cs
  5. 8
      src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs

2
src/Shentun.Peis.Application.Contracts/Reports/0005/Rpt0005HBsAgAsbitem.cs

@ -21,6 +21,6 @@ namespace Shentun.Peis.Reports
public string summarysText { get; set; }
public string AuditorDateTime { get; set; }
public string SubmissionTime { get; set; }
public string SubmissionDateTime { get; set; }
}
}

4
src/Shentun.Peis.DbMigrator/appsettings.json

@ -1,7 +1,7 @@
{
"ConnectionStrings": {
"Default": "Host=140.143.162.39;Port=5432;Database=ShentunPeis240701;User ID=postgres;Password=shentun123;"
//"Default": "Host=192.168.2.67;Port=5432;Database=ShentunPeis;User ID=postgres;Password=st123;"
//"Default": "Host=140.143.162.39;Port=5432;Database=ShentunPeis240701;User ID=postgres;Password=shentun123;"
"Default": "Host=192.168.2.67;Port=5432;Database=ShentunPeis;User ID=postgres;Password=st123;"
//"Default": "Host=localhost;Port=5432;Database=ShentunPeis1218;User ID=postgres;Password=wxd123;"
//"Default": "Host=10.1.12.140;Port=5432;Database=ShentunPeis0508;User ID=postgres;Password=st123;"
},

16260
src/Shentun.Peis.EntityFrameworkCore/Migrations/20241204051235_add_register_check_submission_time.Designer.cs
File diff suppressed because it is too large
View File

36
src/Shentun.Peis.EntityFrameworkCore/Migrations/20241204051235_add_register_check_submission_time.cs

@ -0,0 +1,36 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Shentun.Peis.Migrations
{
public partial class add_register_check_submission_time : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "auditor_time",
table: "register_check",
type: "timestamp without time zone",
nullable: true);
migrationBuilder.AddColumn<DateTime>(
name: "submission_time",
table: "register_check",
type: "timestamp without time zone",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "auditor_time",
table: "register_check");
migrationBuilder.DropColumn(
name: "submission_time",
table: "register_check");
}
}
}

8
src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs

@ -8740,6 +8740,10 @@ namespace Shentun.Peis.Migrations
.HasColumnType("text")
.HasColumnName("auditor_name");
b.Property<DateTime?>("AuditorTime")
.HasColumnType("timestamp without time zone")
.HasColumnName("auditor_time");
b.Property<Guid?>("AuditorUserId")
.HasColumnType("uuid")
.HasColumnName("auditor_user_id")
@ -8946,6 +8950,10 @@ namespace Shentun.Peis.Migrations
.HasColumnName("sign_in_time")
.HasComment("签收时间");
b.Property<DateTime?>("SubmissionTime")
.HasColumnType("timestamp without time zone")
.HasColumnName("submission_time");
b.Property<string>("ThirdInfo")
.HasMaxLength(80)
.HasColumnType("character varying(80)")

Loading…
Cancel
Save