2023-06-26 14:02:04 +07:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
2023-06-26 15:18:39 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
2023-06-26 14:02:04 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class ProfileOther : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Comment("วันที่")]
|
|
|
|
|
|
public DateTime? Date { get; set; }
|
|
|
|
|
|
[Comment("รายละเอียด")]
|
|
|
|
|
|
public string? Detail { get; set; }
|
|
|
|
|
|
public virtual List<ProfileOtherHistory> ProfileOtherHistorys { get; set; } = new List<ProfileOtherHistory>();
|
|
|
|
|
|
public Profile? Profile { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|