api บันทึกเครื่องราช
This commit is contained in:
parent
9abb9c5422
commit
51bdcf4041
50 changed files with 162548 additions and 111 deletions
10
BMA.EHR.Retirement.Service/Requests/RetirementFileRequest.cs
Normal file
10
BMA.EHR.Retirement.Service/Requests/RetirementFileRequest.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Retirement.Service.Requests
|
||||
{
|
||||
public class RetirementFileRequest
|
||||
{
|
||||
public List<FormFile>? File { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Retirement.Service.Requests
|
||||
{
|
||||
public class RetirementQuestionRequest
|
||||
{
|
||||
public Guid RetirementResignId { get; set; }
|
||||
public List<string>? ReasonWork { get; set; }
|
||||
public string? ReasonWorkOther { get; set; }
|
||||
public List<string>? TimeThink { get; set; }
|
||||
public List<string>? ExitFactor { get; set; }
|
||||
public string? ExitFactorOther { get; set; }
|
||||
public List<string>? Adjust { get; set; }
|
||||
public string? AdjustOther { get; set; }
|
||||
public string? RealReason { get; set; }
|
||||
public string? NotExitFactor { get; set; }
|
||||
public bool? Havejob { get; set; }
|
||||
public string? HavejobReason { get; set; }
|
||||
public bool? SuggestFriends { get; set; }
|
||||
public string? SuggestFriendsReason { get; set; }
|
||||
public bool? FutureWork { get; set; }
|
||||
public string? FutureWorkReason { get; set; }
|
||||
public string? Suggestion { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Retirement.Service.Requests
|
||||
{
|
||||
public class RetirementReasonRequest
|
||||
{
|
||||
public string Reason { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -14,5 +14,6 @@ namespace BMA.EHR.Retirement.Service.Requests
|
|||
public string? PositionLevelOld { get; set; }
|
||||
public string? PositionNumberOld { get; set; }
|
||||
public double? AmountOld { get; set; }
|
||||
public List<FormFile>? File { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue