no message
This commit is contained in:
parent
2fc8700b8d
commit
8e733b8453
29 changed files with 2038 additions and 121 deletions
89
BMA.EHR.Application/Responses/ProbationAssignResponse.cs
Normal file
89
BMA.EHR.Application/Responses/ProbationAssignResponse.cs
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class ProbationAssignResponse
|
||||
{
|
||||
public bool successful { get; set; }
|
||||
public Data data { get; set; }
|
||||
|
||||
public class Data
|
||||
{
|
||||
public Profile profile { get; set; }
|
||||
public Assign assign { get; set; }
|
||||
public List<Mentor> mentors { get; set; }
|
||||
public Commander commander { get; set; }
|
||||
public List<Job> jobs { get; set; }
|
||||
public List<Knowledge> knowledges { get; set; }
|
||||
public List<Competency> competencys { get; set; }
|
||||
public List<Output> outputs { get; set; }
|
||||
}
|
||||
|
||||
public class Profile
|
||||
{
|
||||
public string personal_id { get; set; } = string.Empty;
|
||||
public string name { get; set; } = string.Empty;
|
||||
public string PositionId { get; set; } = string.Empty;
|
||||
public string PositionLevelId { get; set; } = string.Empty;
|
||||
public string PositionLineId { get; set; } = string.Empty;
|
||||
public string OrganizationOrganization { get; set; } = string.Empty;
|
||||
public string Position { get; set; } = string.Empty;
|
||||
public string Department { get; set; } = string.Empty;
|
||||
public string Oc { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Assign
|
||||
{
|
||||
public string date_start { get; set; } = string.Empty;
|
||||
public string date_finish { get; set; } = string.Empty;
|
||||
public string behavior_desc { get; set; } = string.Empty;
|
||||
public string other_desc { get; set; } = string.Empty;
|
||||
public string other4_desc { get; set; } = string.Empty;
|
||||
public string other5_no1_desc { get; set; } = string.Empty;
|
||||
public string other5_no2_desc { get; set; } = string.Empty;
|
||||
public string experimenter_dated { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Mentor
|
||||
{
|
||||
public string personal_id { get; set; } = string.Empty;
|
||||
public string name { get; set; } = string.Empty;
|
||||
public string dated { get; set; } = string.Empty;
|
||||
public string Position { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Commander
|
||||
{
|
||||
public string personal_id { get; set; } = string.Empty;
|
||||
public string name { get; set; } = string.Empty;
|
||||
public string dated { get; set; } = string.Empty;
|
||||
public string Position { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Job
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string activity_desc { get; set; } = string.Empty;
|
||||
public string goal_desc { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Knowledge
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string title { get; set; } = string.Empty;
|
||||
public string description { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Competency
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string title { get; set; } = string.Empty;
|
||||
public string description { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Output
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string output_desc { get; set; } = string.Empty;
|
||||
public string indicator_desc { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue