29 lines
1.3 KiB
C#
29 lines
1.3 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
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; }
|
|
[Comment("คืนวันที่")]
|
|
public DateTime? ReturnDate { get; set; }
|
|
[Comment("Fk Table OrganizationOrganization Return")]
|
|
public OrganizationOrganization? 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; }
|
|
}
|
|
}
|