IRC_NewDev
parent
a001db2da5
commit
d1f04d5c0c
|
@ -322,6 +322,35 @@ namespace IRaCIS.Application.Contracts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string WorkPartTimeEn { get; set; } = string.Empty;
|
public string WorkPartTimeEn { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 大学
|
||||||
|
/// </summary>
|
||||||
|
public string University { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 大学
|
||||||
|
/// </summary>
|
||||||
|
public string UniversityCN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 城市
|
||||||
|
/// </summary>
|
||||||
|
public string City { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 城市
|
||||||
|
/// </summary>
|
||||||
|
public string CityCN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 医院
|
||||||
|
/// </summary>
|
||||||
|
public string HospitalName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 医院
|
||||||
|
/// </summary>
|
||||||
|
public string HospitalNameCN { get; set; } = string.Empty;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -271,10 +271,10 @@ public class Doctor : BaseFullAuditEntity
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ҽԺ
|
/// ҽԺ
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string HospitalEn { get; set; } = string.Empty;
|
public string HospitalName { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ҽԺ
|
/// ҽԺ
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string HospitalCN { get; set; } = string.Empty;
|
public string HospitalNameCN { get; set; } = string.Empty;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,38 @@
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class Doctord : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "HospitalEn",
|
||||||
|
table: "Doctor",
|
||||||
|
newName: "HospitalNameCN");
|
||||||
|
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "HospitalCN",
|
||||||
|
table: "Doctor",
|
||||||
|
newName: "HospitalName");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "HospitalNameCN",
|
||||||
|
table: "Doctor",
|
||||||
|
newName: "HospitalEn");
|
||||||
|
|
||||||
|
migrationBuilder.RenameColumn(
|
||||||
|
name: "HospitalName",
|
||||||
|
table: "Doctor",
|
||||||
|
newName: "HospitalCN");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1416,19 +1416,19 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
b.Property<DateTime?>("GCPTime")
|
b.Property<DateTime?>("GCPTime")
|
||||||
.HasColumnType("datetime2");
|
.HasColumnType("datetime2");
|
||||||
|
|
||||||
b.Property<string>("HospitalCN")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(400)
|
|
||||||
.HasColumnType("nvarchar(400)");
|
|
||||||
|
|
||||||
b.Property<string>("HospitalEn")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(400)
|
|
||||||
.HasColumnType("nvarchar(400)");
|
|
||||||
|
|
||||||
b.Property<Guid?>("HospitalId")
|
b.Property<Guid?>("HospitalId")
|
||||||
.HasColumnType("uniqueidentifier");
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
b.Property<string>("HospitalName")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(400)
|
||||||
|
.HasColumnType("nvarchar(400)");
|
||||||
|
|
||||||
|
b.Property<string>("HospitalNameCN")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(400)
|
||||||
|
.HasColumnType("nvarchar(400)");
|
||||||
|
|
||||||
b.Property<string>("HospitalOther")
|
b.Property<string>("HospitalOther")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(400)
|
.HasMaxLength(400)
|
||||||
|
|
Loading…
Reference in New Issue