migrate (add table PlacementAppointmentEmployee)
This commit is contained in:
parent
a4447b9014
commit
74281c697c
6 changed files with 19786 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Placement.Service.Requests
|
||||
{
|
||||
public class ReportExecutePlacementAppointRequest
|
||||
{
|
||||
public ReportExecutePlacementAppointRequestObj[] profileEmps { get; set; }
|
||||
}
|
||||
public class ReportExecutePlacementAppointRequestObj
|
||||
{
|
||||
public string? profileId { get; set; }
|
||||
public string? prefix { get; set; }
|
||||
public string? firstName { get; set; }
|
||||
public string? lastName { get; set; }
|
||||
public string? citizenId { get; set; }
|
||||
public string? root { get; set; }
|
||||
public string? rootId { get; set; }
|
||||
public string? rootShortName { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue