api อุทธร

This commit is contained in:
Kittapath 2023-12-13 10:40:59 +07:00
parent d4ae5f8c53
commit c1b3ad7f7a
10 changed files with 12651 additions and 0 deletions

View file

@ -0,0 +1,17 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Domain.Models.Base;
using BMA.EHR.Domain.Models.Organizations;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Domain.Models.Discipline
{
public class DisciplineComplaint_Appeal_History : EntityBase
{
[Required, Comment("สถานะอุทธรณ์/ร้องทุกข์")]
public string Status { get; set; } = string.Empty;
[Required, Comment("อ้างอิงเรื่องอุทธรณ์/ร้องทุกข์")]
public DisciplineComplaint_Appeal DisciplineComplaint_Appeal { get; set; }
}
}