36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
using BMA.EHR.Domain.Models.Base;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Domain.Models.Insignias
|
|
{
|
|
public class InsigniaManageProfile : EntityBase
|
|
{
|
|
[Comment("สถานะการคืน")]
|
|
public bool Status { get; set; }
|
|
|
|
[Comment("ยืมวันที่")]
|
|
public DateTime? BorrowDate { get; set; }
|
|
|
|
[Comment("Fk Table OrganizationOrganization Borrow")]
|
|
//public OrganizationOrganization? BorrowOrganization { get; set; }
|
|
public Guid? BorrowOrganizationId { get; set; }
|
|
public string? BorrowOrganization { get; set; }
|
|
|
|
[Comment("คืนวันที่")]
|
|
public DateTime? ReturnDate { get; set; }
|
|
|
|
[Comment("Fk Table OrganizationOrganization Return")]
|
|
//public OrganizationOrganization? ReturnOrganization { get; set; }
|
|
public Guid? ReturnOrganizationId { get; set; }
|
|
public string? ReturnOrganization { get; set; }
|
|
|
|
[Comment("เหตุผลคืน")]
|
|
public string? ReturnReason { get; set; }
|
|
|
|
[Comment("Fk Table InsigniaNoteProfile")]
|
|
public InsigniaNoteProfile InsigniaNoteProfile { get; set; }
|
|
|
|
[Comment("Fk Table InsigniaManageOrganiation")]
|
|
public InsigniaManageOrganiation InsigniaManageOrganiation { get; set; }
|
|
}
|
|
}
|