เตรียมไปออกคำสั่ง วินัย
This commit is contained in:
parent
3d8d65f21f
commit
536a94d907
12 changed files with 11865 additions and 2 deletions
|
|
@ -0,0 +1,16 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.Service.Requests
|
||||
{
|
||||
public class DisciplineSuspendRequest
|
||||
{
|
||||
public string? Organization { get; set; }
|
||||
public string? Position { get; set; }
|
||||
public string? PosNo { get; set; }
|
||||
public string? PositionLevel { get; set; }
|
||||
public double? Salary { get; set; }
|
||||
public string? DescriptionSuspend { get; set; }
|
||||
public DateTime? StartDateSuspend { get; set; }
|
||||
public DateTime? EndDateSuspend { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Discipline.Service.Requests
|
||||
{
|
||||
public class DisciplineProfileRequest
|
||||
{
|
||||
public List<Guid> Id { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue