hrms-api-report-v1/Models/HR/ProfileTrainingHistory.cs
2023-05-30 10:11:40 +07:00

36 lines
1.3 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Report.Service.Models;
namespace BMA.EHR.Profile.Service.Models.HR
{
public class ProfileTrainingHistory : EntityBase
{
[MaxLength(200)]
public string? Name { get; set; }
[MaxLength(200)]
public string? Topic { get; set; }
[MaxLength(200)]
public int? Yearly { get; set; }
[MaxLength(200)]
public string? Place { get; set; }
[MaxLength(200)]
public string? Duration { get; set; }
[MaxLength(200)]
public string? Department { get; set; }
[MaxLength(200)]
public string? NumberOrder { get; set; }
public DateTime? DateOrder { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
// public string? Course { get; set; }
// public DateTime? Start { get; set; }
// public DateTime? End { get; set; }
// public string? Location { get; set; }
// public string? Detail { get; set; }
// public string? Organize { get; set; }
// public string? Gen { get; set; }
public virtual ProfileTraining? ProfileTraining { get; set; }
}
}