แก้ระบบบรรจุผูกโครงสร้างใหม่
This commit is contained in:
parent
57164f5d45
commit
18d75f4b04
37 changed files with 79295 additions and 3904 deletions
39
BMA.EHR.Retirement.Service/Requests/OrgRequest.cs
Normal file
39
BMA.EHR.Retirement.Service/Requests/OrgRequest.cs
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Retirement.Service.Requests
|
||||
{
|
||||
public class OrgRequest
|
||||
{
|
||||
public OrgRequestData result { get; set; } = new();
|
||||
}
|
||||
public class OrgRequestData
|
||||
{
|
||||
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; }
|
||||
public string? child1 { get; set; }
|
||||
public string? child1Id { get; set; }
|
||||
public string? child1ShortName { get; set; }
|
||||
public string? child2 { get; set; }
|
||||
public string? child2Id { get; set; }
|
||||
public string? child2ShortName { get; set; }
|
||||
public string? child3 { get; set; }
|
||||
public string? child3Id { get; set; }
|
||||
public string? child3ShortName { get; set; }
|
||||
public string? child4 { get; set; }
|
||||
public string? child4Id { get; set; }
|
||||
public string? child4ShortName { get; set; }
|
||||
public int? posMasterNo { get; set; }
|
||||
public string? position { get; set; }
|
||||
public string? posTypeId { get; set; }
|
||||
public string? posTypeName { get; set; }
|
||||
public string? posLevelId { get; set; }
|
||||
public string? posLevelName { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -5,25 +5,25 @@ namespace BMA.EHR.Retirement.Service.Requests
|
|||
{
|
||||
public class RetirementOtherEditRequest
|
||||
{
|
||||
public string CitizenId { get; set; }
|
||||
public Guid PrefixId { get; set; }
|
||||
public string Firstname { get; set; }
|
||||
public string Lastname { get; set; }
|
||||
public DateTime DateOfBirth { get; set; }
|
||||
public Guid? GenderId { get; set; }
|
||||
public string? Nationality { get; set; }
|
||||
public string? Race { get; set; }
|
||||
public Guid? ReligionId { get; set; }
|
||||
public Guid? BloodGroupId { get; set; }
|
||||
public Guid? RelationshipId { get; set; }
|
||||
public string? TelephoneNumber { get; set; }
|
||||
// public string CitizenId { get; set; }
|
||||
// public Guid PrefixId { get; set; }
|
||||
// public string Firstname { get; set; }
|
||||
// public string Lastname { get; set; }
|
||||
// public DateTime DateOfBirth { get; set; }
|
||||
// public Guid? GenderId { get; set; }
|
||||
// public string? Nationality { get; set; }
|
||||
// public string? Race { get; set; }
|
||||
// public Guid? ReligionId { get; set; }
|
||||
// public Guid? BloodGroupId { get; set; }
|
||||
// public Guid? RelationshipId { get; set; }
|
||||
// public string? TelephoneNumber { get; set; }
|
||||
public string? Reason { get; set; }
|
||||
public string? EducationOld { get; set; }
|
||||
public string? OrganizationPositionOld { get; set; }
|
||||
public string? PositionTypeOld { get; set; }
|
||||
public string? PositionLevelOld { get; set; }
|
||||
public string? PositionNumberOld { get; set; }
|
||||
public double? Amount { get; set; }
|
||||
// public double? Amount { get; set; }
|
||||
public double? AmountOld { get; set; }
|
||||
public DateTime? PositionDate { get; set; }
|
||||
public DateTime? MilitaryDate { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue