แก้สมัครสอบ

This commit is contained in:
kittapath 2025-01-05 21:59:00 +07:00
parent 0412128380
commit 2d65213eee
56 changed files with 4297 additions and 1392 deletions

View file

@ -5,11 +5,11 @@ using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.MetaData.Service.Models;
public class Relationship: EntityBase
public class Relationship : EntityBase
{
[Required, MaxLength(50), Column(Order = 1), Comment("ชื่อความสัมพันธ์")]
public string Name { get; set; } = string.Empty;
public string name { get; set; } = string.Empty;
[Column(Order = 2), Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
// [Column(Order = 2), Comment("สถานะการใช้งาน")]
// public bool IsActive { get; set; } = true;
}