Merge remote-tracking branch 'origin/develop' into develop
# Conflicts: # BMA.EHR.Placement.Service/appsettings.json
This commit is contained in:
parent
6b1e648721
commit
109016e2b5
3 changed files with 107 additions and 0 deletions
31
BMA.EHR.Command.Service/Requests/UpdateCommandRequest.cs
Normal file
31
BMA.EHR.Command.Service/Requests/UpdateCommandRequest.cs
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
namespace BMA.EHR.Command.Service.Requests
|
||||
{
|
||||
public class UpdateCommandRequest
|
||||
{
|
||||
public Guid orderTypeValue { get; set; }
|
||||
|
||||
public string orderTitle { get; set; }
|
||||
|
||||
public int orderNo { get; set; }
|
||||
|
||||
public int orderYear { get; set; }
|
||||
|
||||
public Guid orderBy { get; set; }
|
||||
|
||||
public string signatoryBy { get; set; }
|
||||
|
||||
public string signatoryPosition { get; set; }
|
||||
|
||||
public Guid examRound { get; set; }
|
||||
|
||||
public string registerPosition { get; set; }
|
||||
|
||||
public string conclusionRegisterNo { get; set; }
|
||||
|
||||
public DateTime conclusionRegisterDate { get; set; }
|
||||
|
||||
public string conclusionResultNo { get; set; }
|
||||
|
||||
public DateTime conclusionResultDate { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue