api ตำแหน่ง draft
This commit is contained in:
parent
6b7fcaaba2
commit
6a572144ab
42 changed files with 32604 additions and 1 deletions
44
BMA.EHR.Application/Requests/SaveToProfileRequest.cs
Normal file
44
BMA.EHR.Application/Requests/SaveToProfileRequest.cs
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Application.Requests
|
||||
{
|
||||
public class SaveToProfileRequest
|
||||
{
|
||||
public int OCId { get; set; }
|
||||
public DateTime? InsigniaDatereceive { get; set; }
|
||||
public string InsigniaLevel { get; set; }
|
||||
public string InsigniaIssue { get; set; }
|
||||
public int? InsigniaVolumeno { get; set; }
|
||||
public string InsigniaVolume { get; set; }
|
||||
public string InsigniaSection { get; set; }
|
||||
public DateTime? InsigniaDateannounce { get; set; }
|
||||
public List<ProfileInsignias> Profile { get; set; }
|
||||
public List<DocReceive> Docs { get; set; }
|
||||
}
|
||||
|
||||
public class ProfileInsignias
|
||||
{
|
||||
public string FkProfileId { get; set; }
|
||||
public string InsigniaName { get; set; }
|
||||
public string InsigniaPage { get; set; }
|
||||
public string InsigniaNo { get; set; }
|
||||
public int? Kp7InsigniaId { get; set; }
|
||||
}
|
||||
public class DocReceive
|
||||
{
|
||||
public int DocId { get; set; }
|
||||
public int InsigniaType { get; set; }
|
||||
public int Type { get; set; }
|
||||
}
|
||||
|
||||
public class Kp7Item
|
||||
{
|
||||
public DateTime? InsigniaDatereceive { get; set; }
|
||||
public string InsigniaLevel { get; set; }
|
||||
public string InsigniaIssue { get; set; }
|
||||
public int? InsigniaVolumeno { get; set; }
|
||||
public string InsigniaVolume { get; set; }
|
||||
public string InsigniaSection { get; set; }
|
||||
public DateTime? InsigniaDateannounce { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue