แก้ api ลา

This commit is contained in:
kittapath 2024-11-18 18:43:46 +07:00
parent d08b4ca723
commit 4822110533
20 changed files with 20695 additions and 2783 deletions

View file

@ -21,9 +21,9 @@ namespace BMA.EHR.Application.Responses.Profiles
public Guid? OcId { get; set; }
public PosType? PosType { get; set; }
public string? PosType { get; set; }
public PosLevel? PosLevel { get; set; }
public string? PosLevel { get; set; }
public string? Oc { get; set; }
@ -45,16 +45,17 @@ namespace BMA.EHR.Application.Responses.Profiles
public bool? IsLeave { get; set; }
public string? Root { get; set; }
public string? Child1 { get; set; }
public string? Child2 { get; set; }
public string? Child3 { get; set; }
public string? Child4 { get; set; }
public Guid? RootId { get; set; }
public Guid? Child1Id { get; set; }
public Guid? Child2Id { get; set; }
public Guid? Child3Id { get; set; }
public Guid? Child4Id { get; set; }
public double? Amount { get; set; }
public double? PositionSalaryAmount { get; set; }
public string? Commander { get; set; }
}
@ -127,5 +128,6 @@ namespace BMA.EHR.Application.Responses.Profiles
public int? Year { get; set; }
public Guid? InsigniaId { get; set; }
public string? Insignia { get; set; }
}
}

View file

@ -25,9 +25,13 @@ namespace BMA.EHR.Application.Responses.Profiles
public Guid? OcId { get; set; }
public PosType? PosType { get; set; }
public string? PosType { get; set; }
public PosLevel? PosLevel { get; set; }
public string? PosLevel { get; set; }
public Guid? PosTypeId { get; set; }
public Guid? PosLevelId { get; set; }
public string? Oc { get; set; }
@ -42,5 +46,9 @@ namespace BMA.EHR.Application.Responses.Profiles
public string? PosNoEmployee { get; set; }
public string? Gender { get; set; }
public double? Amount { get; set; }
public double? PositionSalaryAmount { get; set; }
public Guid? RootId { get; set; }
public string? Root { get; set; }
}
}