hrms-api-report-v1/Models/Exam/BankExam.cs

20 lines
581 B
C#

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recurit.Exam.Service.Models
{
public class BankExam : EntityBase
{
[Required, Comment("Id การสอบ")]
public virtual PeriodExam? PeriodExam { get; set; }
[Comment("เลขบัญชี")]
public string? AccountNumber { get; set; }
[Comment("ธนาคาร")]
public string? BankName { get; set; }
[Comment("ชื่อบัญชี")]
public string? AccountName { get; set; }
}
}