เพิ่มฟิวชื่อคนได้เครื่องราช
This commit is contained in:
parent
8d700d273f
commit
f5ec2a57e5
5 changed files with 18533 additions and 0 deletions
|
|
@ -5994,6 +5994,15 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("ที่อยู่ที่จ่าย");
|
||||
|
||||
b.Property<double?>("Amount")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<DateTime?>("BirthDate")
|
||||
.HasColumnType("datetime(6)");
|
||||
|
||||
b.Property<string>("CitizenId")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<DateTime>("CreatedAt")
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(100)
|
||||
|
|
@ -6017,6 +6026,9 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("datetime(6)")
|
||||
.HasComment("วันที่");
|
||||
|
||||
b.Property<DateTime?>("DateAppoint")
|
||||
.HasColumnType("datetime(6)");
|
||||
|
||||
b.Property<DateTime?>("DatePayment")
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasComment("วันที่จ่ายใบกำกับ");
|
||||
|
|
@ -6039,6 +6051,12 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
b.Property<Guid?>("DocReturnInsigniaId")
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<string>("FirstName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("Gender")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<Guid>("InsigniaNoteId")
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
|
|
@ -6049,6 +6067,9 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("ทะเบียนฐานันดร");
|
||||
|
||||
b.Property<string>("LastName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("LastUpdateFullName")
|
||||
.IsRequired()
|
||||
.HasMaxLength(200)
|
||||
|
|
@ -6094,9 +6115,30 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("longtext")
|
||||
.HasComment("หน้าที่");
|
||||
|
||||
b.Property<string>("PosLevelName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("PosNo")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("PosTypeName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("Position")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<double?>("PositionSalaryAmount")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<string>("Prefix")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<Guid?>("ProfileId")
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<string>("ProfileType")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<DateTime?>("RequestDate")
|
||||
.HasColumnType("datetime(6)");
|
||||
|
||||
|
|
@ -6319,6 +6361,15 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasComment("PrimaryKey")
|
||||
.HasAnnotation("Relational:JsonPropertyName", "id");
|
||||
|
||||
b.Property<double?>("Amount")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<DateTime?>("BirthDate")
|
||||
.HasColumnType("datetime(6)");
|
||||
|
||||
b.Property<string>("CitizenId")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<DateTime>("CreatedAt")
|
||||
.HasColumnType("datetime(6)")
|
||||
.HasColumnOrder(100)
|
||||
|
|
@ -6338,9 +6389,21 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnOrder(101)
|
||||
.HasComment("User Id ที่สร้างข้อมูล");
|
||||
|
||||
b.Property<DateTime?>("DateAppoint")
|
||||
.HasColumnType("datetime(6)");
|
||||
|
||||
b.Property<string>("FirstName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("Gender")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<bool>("IsApprove")
|
||||
.HasColumnType("tinyint(1)");
|
||||
|
||||
b.Property<string>("LastName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("LastUpdateFullName")
|
||||
.IsRequired()
|
||||
.HasMaxLength(200)
|
||||
|
|
@ -6376,9 +6439,30 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("text")
|
||||
.HasComment("รายละเอียดเครื่องราชฯที่ขอ");
|
||||
|
||||
b.Property<string>("PosLevelName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("PosNo")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("PosTypeName")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("Position")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<double?>("PositionSalaryAmount")
|
||||
.HasColumnType("double");
|
||||
|
||||
b.Property<string>("Prefix")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<Guid>("ProfileId")
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<string>("ProfileType")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("Reason")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("เหตุผลการได้รับเครื่องราชฯ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue