IRC_NewDev
parent
bcfb91bc05
commit
f652c95d8c
|
@ -17316,6 +17316,36 @@
|
|||
工作兼职En
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.DoctorBasicInfo.UniversityAffiliated">
|
||||
<summary>
|
||||
大学
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.DoctorBasicInfo.UniversityAffiliatedCN">
|
||||
<summary>
|
||||
大学
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.DoctorBasicInfo.City">
|
||||
<summary>
|
||||
城市
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.DoctorBasicInfo.CityCN">
|
||||
<summary>
|
||||
城市
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.DoctorBasicInfo.HospitalName">
|
||||
<summary>
|
||||
医院
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.DoctorBasicInfo.HospitalNameCN">
|
||||
<summary>
|
||||
医院
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.PaymentModeDto.BankNum">
|
||||
<summary>
|
||||
银行卡号
|
||||
|
|
|
@ -325,12 +325,12 @@ namespace IRaCIS.Application.Contracts
|
|||
/// <summary>
|
||||
/// 大学
|
||||
/// </summary>
|
||||
public string University { get; set; } = string.Empty;
|
||||
public string UniversityAffiliated { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 大学
|
||||
/// </summary>
|
||||
public string UniversityCN { get; set; } = string.Empty;
|
||||
public string UniversityAffiliatedCN { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 城市
|
||||
|
|
|
@ -251,12 +251,12 @@ public class Doctor : BaseFullAuditEntity
|
|||
/// <summary>
|
||||
/// 大学
|
||||
/// </summary>
|
||||
public string University { get; set; } = string.Empty;
|
||||
public string UniversityAffiliated { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 大学
|
||||
/// </summary>
|
||||
public string UniversityCN { get; set; } = string.Empty;
|
||||
public string UniversityAffiliatedCN { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 城市
|
||||
|
|
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 doctorf : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "UniversityCN",
|
||||
table: "Doctor",
|
||||
newName: "UniversityAffiliatedCN");
|
||||
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "University",
|
||||
table: "Doctor",
|
||||
newName: "UniversityAffiliated");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "UniversityAffiliatedCN",
|
||||
table: "Doctor",
|
||||
newName: "UniversityCN");
|
||||
|
||||
migrationBuilder.RenameColumn(
|
||||
name: "UniversityAffiliated",
|
||||
table: "Doctor",
|
||||
newName: "University");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1589,12 +1589,12 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
b.Property<Guid?>("TrialId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<string>("University")
|
||||
b.Property<string>("UniversityAffiliated")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<string>("UniversityCN")
|
||||
b.Property<string>("UniversityAffiliatedCN")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
|
Loading…
Reference in New Issue