Compare commits

..

No commits in common. "c9590829b20761d19faf9a395b20bc1afc9cc5ea" and "20718bca5dd896dc473a49105eaed078e62cbb62" have entirely different histories.

4 changed files with 0 additions and 18809 deletions

View File

@ -87,11 +87,7 @@ public class User : BaseFullAuditEntity
public Guid UserTypeId { get; set; }
#region HIR
public string CheckCode { get; set; } = string.Empty;
//目前是tj医院
public string ThirdUserCode { get; set; } = string.Empty;
#endregion
}

File diff suppressed because it is too large Load Diff

View File

@ -1,30 +0,0 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class tjAddUserCode : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ThirdUserCode",
table: "User",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ThirdUserCode",
table: "User");
}
}
}

View File

@ -13148,11 +13148,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<bool>("SuperAdmin")
.HasColumnType("bit");
b.Property<string>("ThirdUserCode")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<DateTime>("UpdateTime")
.HasColumnType("datetime2");