เพิ่ม api วันที่จ้างลูกจ้าง

This commit is contained in:
Kittapath 2023-10-24 18:22:20 +07:00
parent 929d9d5c96
commit 97b85a34e7
8 changed files with 17220 additions and 3 deletions

View file

@ -3092,6 +3092,136 @@ namespace BMA.EHR.Infrastructure.Migrations
b.ToTable("ProfileEducationHistorys");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.HR.ProfileEmployment", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnOrder(0)
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<string>("Command")
.HasColumnType("longtext")
.HasComment("คำสั่ง");
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<DateTime?>("Date")
.HasColumnType("datetime(6)")
.HasComment("วันที่จ้าง");
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<Guid?>("ProfileId")
.HasColumnType("char(36)");
b.HasKey("Id");
b.HasIndex("ProfileId");
b.ToTable("ProfileEmployments");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.HR.ProfileEmploymentHistory", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnOrder(0)
.HasComment("PrimaryKey")
.HasAnnotation("Relational:JsonPropertyName", "id");
b.Property<string>("Command")
.HasColumnType("longtext")
.HasComment("คำสั่ง");
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<DateTime?>("Date")
.HasColumnType("datetime(6)")
.HasComment("วันที่จ้าง");
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<Guid?>("ProfileEmploymentId")
.HasColumnType("char(36)");
b.HasKey("Id");
b.HasIndex("ProfileEmploymentId");
b.ToTable("ProfileEmploymentHistorys");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.HR.ProfileFamilyHistory", b =>
{
b.Property<Guid>("Id")
@ -4712,6 +4842,10 @@ namespace BMA.EHR.Infrastructure.Migrations
b.Property<Guid?>("ProfileId")
.HasColumnType("char(36)");
b.Property<string>("RefCommandNo")
.HasColumnType("longtext")
.HasComment("เอกสารอ้างอิง (เลขที่คำสั่ง)");
b.Property<string>("SalaryClass")
.HasColumnType("longtext")
.HasComment("ตำแหน่ง (รายละเอียด)");
@ -14781,6 +14915,24 @@ namespace BMA.EHR.Infrastructure.Migrations
b.Navigation("ProfileEducation");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.HR.ProfileEmployment", b =>
{
b.HasOne("BMA.EHR.Domain.Models.HR.Profile", "Profile")
.WithMany("Employments")
.HasForeignKey("ProfileId");
b.Navigation("Profile");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.HR.ProfileEmploymentHistory", b =>
{
b.HasOne("BMA.EHR.Domain.Models.HR.ProfileEmployment", "ProfileEmployment")
.WithMany()
.HasForeignKey("ProfileEmploymentId");
b.Navigation("ProfileEmployment");
});
modelBuilder.Entity("BMA.EHR.Domain.Models.HR.ProfileFamilyHistory", b =>
{
b.HasOne("BMA.EHR.Domain.Models.HR.Profile", "Profile")
@ -16529,6 +16681,8 @@ namespace BMA.EHR.Infrastructure.Migrations
b.Navigation("Educations");
b.Navigation("Employments");
b.Navigation("FamilyHistory");
b.Navigation("FatherHistory");