add note to profile insignia

This commit is contained in:
Suphonchai Phoonsawat 2024-03-01 11:12:15 +07:00
parent adada88230
commit 1393969516
5 changed files with 17202 additions and 0 deletions

View file

@ -36,5 +36,8 @@ namespace BMA.EHR.Domain.Models.HR
public DateTime? RefCommandDate { get; set; }
public virtual List<ProfileInsigniaHistory> ProfileInsigniaHistorys { get; set; } = new List<ProfileInsigniaHistory>();
public virtual Profile? Profile { get; set; }
[Comment("หมายเหตุ")]
public string? Note { get; set; }
}
}

View file

@ -30,5 +30,8 @@ namespace BMA.EHR.Domain.Models.HR
public string? Insignia { get; set; }
public Guid? InsigniaId { get; set; }
public virtual ProfileInsignia? ProfileInsignia { get; set; }
[Comment("หมายเหตุ")]
public string? Note { get; set; }
}
}