report insignia

This commit is contained in:
kittapath 2024-12-15 19:00:38 +07:00
parent 58f7ab83e3
commit 30281ff2ab
4 changed files with 437 additions and 0 deletions

View file

@ -0,0 +1,24 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineReportRequest
{
public string nodeId { get; set; }
public int node { get; set; }
public int year { get; set; }
public string offenseDetail { get; set; }
public string disciplinaryFaultLevel { get; set; }
public string status { get; set; }
public string posType { get; set; }
public string posLevel { get; set; }
}
}