23 lines
731 B
C#
23 lines
731 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Domain.Models.Insignias
|
|
{
|
|
public class InsigniaReclaimProfile : EntityBase
|
|
{
|
|
[Comment("วันที่เรียกคืน")]
|
|
public DateTime? ReclaimDate { get; set; }
|
|
|
|
[Comment("เหตุผลในการเรียกคืน")]
|
|
public string? ReclaimReason { get; set; }
|
|
|
|
[Comment("Fk Table OrganizationOrganization Borrow")]
|
|
public Guid? ReclaimOrganizationId { get; set; }
|
|
public string? ReclaimOrganization { get; set; }
|
|
|
|
[Comment("Fk Table InsigniaNoteProfile")]
|
|
public InsigniaNoteProfile InsigniaNoteProfile { get; set; }
|
|
|
|
|
|
}
|
|
}
|