This commit is contained in:
Suphonchai Phoonsawat 2025-05-07 11:51:19 +07:00
parent e345331381
commit 01590c4894
11 changed files with 20571 additions and 11 deletions

View file

@ -6411,6 +6411,78 @@ namespace BMA.EHR.Infrastructure.Migrations
b.ToTable("InsigniaPeriods");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.Insignias.InsigniaReclaimProfile", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnOrder(0)
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<DateTime>("CreatedAt")
.HasColumnType("datetime(6)")
.HasColumnOrder(100)
.HasComment("สร้างข้อมูลเมื่อ");
b.Property<string>("CreatedFullName")
.IsRequired()
.HasMaxLength(200)
.HasColumnType("varchar(200)")
.HasColumnOrder(104)
.HasComment("ชื่อ User ที่สร้างข้อมูล");
b.Property<string>("CreatedUserId")
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnOrder(101)
.HasComment("User Id ที่สร้างข้อมูล");
b.Property<Guid>("InsigniaNoteProfileId")
.HasColumnType("char(36)");
b.Property<string>("LastUpdateFullName")
.IsRequired()
.HasMaxLength(200)
.HasColumnType("varchar(200)")
.HasColumnOrder(105)
.HasComment("ชื่อ User ที่แก้ไขข้อมูลล่าสุด");
b.Property<string>("LastUpdateUserId")
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnOrder(103)
.HasComment("User Id ที่แก้ไขข้อมูลล่าสุด");
b.Property<DateTime?>("LastUpdatedAt")
.HasColumnType("datetime(6)")
.HasColumnOrder(102)
.HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
b.Property<DateTime?>("ReclaimDate")
.HasColumnType("datetime(6)")
.HasComment("วันที่เรียกคืน");
b.Property<string>("ReclaimOrganization")
.HasColumnType("longtext");
b.Property<Guid?>("ReclaimOrganizationId")
.HasColumnType("char(36)")
.HasComment("Fk Table OrganizationOrganization Borrow");
b.Property<string>("ReclaimReason")
.HasColumnType("longtext")
.HasComment("เหตุผลในการเรียกคืน");
b.HasKey("Id");
b.HasIndex("InsigniaNoteProfileId");
b.ToTable("InsigniaReclaimProfiles");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.Insignias.InsigniaRequest", b =>
{
b.Property<Guid>("Id")
@ -18877,6 +18949,17 @@ namespace BMA.EHR.Infrastructure.Migrations
b.Navigation("ReliefDoc");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.Insignias.InsigniaReclaimProfile", b =>
{
b.HasOne("BMA.EHR.Domain.Models.Insignias.InsigniaNoteProfile", "InsigniaNoteProfile")
.WithMany()
.HasForeignKey("InsigniaNoteProfileId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("InsigniaNoteProfile");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.Insignias.InsigniaRequest", b =>
{
b.HasOne("BMA.EHR.Domain.Models.Documents.Document", "Document")