2024-01-06 03:00:04 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PassDisciplineResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
// public bool successful { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<DisciplineDataResponse> result { get; set; } = new();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class DisciplineDataResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid id { get; set; } = Guid.Empty;
|
2024-10-02 21:29:44 +07:00
|
|
|
|
// public Guid personId { get; set; } = Guid.Empty;
|
2024-01-06 03:00:04 +07:00
|
|
|
|
public Guid? commandId { get; set; } = Guid.Empty;
|
2024-06-26 23:28:27 +07:00
|
|
|
|
|
|
|
|
|
|
public DateTime? commandAffectDate { get; set; }
|
|
|
|
|
|
public string? commandNo { get; set; }
|
2025-02-21 19:11:20 +07:00
|
|
|
|
public int? commandYear { get; set; }
|
2024-06-26 23:28:27 +07:00
|
|
|
|
public string? detail { get; set; }
|
2024-01-06 03:00:04 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|