วินัยเพิ่มหมายเหตุ
Some checks failed
release-dev / release-dev (push) Failing after 10s

This commit is contained in:
moss 2025-04-17 15:54:19 +07:00
parent c6663b35c3
commit ccb183dc95
11 changed files with 20289 additions and 112 deletions

View file

@ -0,0 +1,10 @@
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineResultSummaryRequest
{
public string? remark { get; set; }
public string? offense { get; set; }
}
}

View file

@ -5,6 +5,8 @@ namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineProfileRequest
{
public List<Guid> Id { get; set; }
public List<Guid> id { get; set; }
public FormFile? file { get; set; }
public string? remark { get; set; }
}
}