hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileNopaidHistory.cs
Suphonchai Phoonsawat a0b3b13074 Add MetaData Table From ExistData
Change to use MySQL
2023-06-26 14:02:04 +07:00

18 lines
613 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Domain.Models.Base;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Profile.Service.Models.HR
{
public class ProfileNopaidHistory : EntityBase
{
[Comment("วัน เดือน ปี")]
public DateTime? Date { get; set; }
[Comment("รายละเอียด")]
public string? Detail { get; set; }
[Comment("เอกสารอ้างอิง")]
public string? Reference { get; set; }
public virtual ProfileNopaid? ProfileNopaid { get; set; }
}
}