api อุทธร
This commit is contained in:
parent
d4ae5f8c53
commit
c1b3ad7f7a
10 changed files with 12651 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.Service.Requests
|
||||
{
|
||||
public class DisciplineComplaint_AppealRequest
|
||||
{
|
||||
public string? Title { get; set; } = string.Empty;
|
||||
public string? Description { get; set; } = string.Empty;
|
||||
public string Type { get; set; } = string.Empty;
|
||||
public int? Year { get; set; }
|
||||
public string? CaseType { get; set; } = string.Empty;
|
||||
public string? CaseNumber { get; set; } = string.Empty;
|
||||
public Guid ProfileId { get; set; }
|
||||
public string? CitizenId { get; set; }
|
||||
public string? Fullname { get; set; }
|
||||
public List<FormFile>? File { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.Service.Requests
|
||||
{
|
||||
public class DisciplineComplaint_AppealUpdateRequest
|
||||
{
|
||||
public string? Title { get; set; } = string.Empty;
|
||||
public string? Description { get; set; } = string.Empty;
|
||||
public string Type { get; set; } = string.Empty;
|
||||
public int? Year { get; set; }
|
||||
public string? CaseType { get; set; } = string.Empty;
|
||||
public string? CaseNumber { get; set; } = string.Empty;
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue