Merge branch 'Develop-Bright' into develop
# Conflicts: # BMA.EHR.Report.Service/BMA.EHR.Report.Service.csproj
This commit is contained in:
commit
3d0fbdceb8
30 changed files with 2041 additions and 124 deletions
101
BMA.EHR.Application/Responses/EvaluateAssignResponse.cs
Normal file
101
BMA.EHR.Application/Responses/EvaluateAssignResponse.cs
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
using System;
|
||||
|
||||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class EvaluateAssignResponse
|
||||
{
|
||||
public bool successful { get; set; }
|
||||
public Data data { get; set; }
|
||||
|
||||
public class Data
|
||||
{
|
||||
public Experimentee experimentee { get; set; }
|
||||
public Person person { get; set; }
|
||||
public Assign assign { get; set; }
|
||||
public Evaluate evaluate { get; set; }
|
||||
}
|
||||
|
||||
public class Experimentee
|
||||
{
|
||||
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 Person
|
||||
{
|
||||
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 personal_id { get; set; } = string.Empty;
|
||||
public string round_no { get; set; } = string.Empty;
|
||||
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 Evaluate
|
||||
{
|
||||
public string id { get; set; } = string.Empty;
|
||||
public string director_id { get; set; } = string.Empty;
|
||||
public string assign_id { get; set; } = string.Empty;
|
||||
public string no { get; set; } = string.Empty;
|
||||
public string date_start { get; set; } = string.Empty;
|
||||
public string date_finish { get; set; } = string.Empty;
|
||||
public string commander_dated { get; set; } = string.Empty;
|
||||
public int knowledge_level { get; set; }
|
||||
public int skill_level { get; set; }
|
||||
public int competency_level { get; set; }
|
||||
public int learn_level { get; set; }
|
||||
public int apply_level { get; set; }
|
||||
public int success_level { get; set; }
|
||||
public string achievement_other_desc { get; set; } = string.Empty;
|
||||
public int? achievement_other_level { get; set; }
|
||||
public string achievement_strength_desc { get; set; } = string.Empty;
|
||||
public string achievement_improve_desc { get; set; } = string.Empty;
|
||||
public int conduct1_level { get; set; }
|
||||
public int conduct2_level { get; set; }
|
||||
public int conduct3_level { get; set; }
|
||||
public int conduct4_level { get; set; }
|
||||
public int moral1_level { get; set; }
|
||||
public int moral2_level { get; set; }
|
||||
public int moral3_level { get; set; }
|
||||
public int discipline1_level { get; set; }
|
||||
public int discipline2_level { get; set; }
|
||||
public int discipline3_level { get; set; }
|
||||
public int discipline4_level { get; set; }
|
||||
public int discipline5_level { get; set; }
|
||||
public string behavior_other_desc { get; set; } = string.Empty;
|
||||
public int? behavior_other_level { get; set; }
|
||||
public string behavior_strength_desc { get; set; } = string.Empty;
|
||||
public string behavior_improve_desc { get; set; } = string.Empty;
|
||||
public int orientation { get; set; }
|
||||
public int self_learning { get; set; }
|
||||
public int training_seminar { get; set; }
|
||||
public int other_training { get; set; }
|
||||
public string createdAt { get; set; } = string.Empty;
|
||||
public string updatedAt { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
133
BMA.EHR.Application/Responses/EvaluateChairmanAssignResponse.cs
Normal file
133
BMA.EHR.Application/Responses/EvaluateChairmanAssignResponse.cs
Normal file
|
|
@ -0,0 +1,133 @@
|
|||
using System;
|
||||
|
||||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class EvaluateChairmanAssignResponse
|
||||
{
|
||||
public bool successful { get; set; }
|
||||
public Data data { get; set; }
|
||||
|
||||
public class Data
|
||||
{
|
||||
public Experimentee experimentee { get; set; }
|
||||
public List<Mentor> mentors { get; set; }
|
||||
public Commander commander { get; set; }
|
||||
public Chairman chairman { get; set; }
|
||||
public Assign assign { get; set; }
|
||||
public Evaluate evaluate { get; set; }
|
||||
}
|
||||
|
||||
public class Experimentee
|
||||
{
|
||||
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 Mentor
|
||||
{
|
||||
public string dated { get; set; }
|
||||
public Profile profile { get; set; }
|
||||
|
||||
}
|
||||
|
||||
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 Chairman
|
||||
{
|
||||
public string dated { get; set; }
|
||||
public Profile profile { get; set; }
|
||||
}
|
||||
|
||||
public class Assign
|
||||
{
|
||||
public string personal_id { get; set; } = string.Empty;
|
||||
public string round_no { get; set; } = string.Empty;
|
||||
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 Evaluate
|
||||
{
|
||||
public string id { get; set; } = string.Empty;
|
||||
public string director_id { get; set; } = string.Empty;
|
||||
public string assign_id { get; set; } = string.Empty;
|
||||
public string no { get; set; } = string.Empty;
|
||||
public string date_start { get; set; } = string.Empty;
|
||||
public string date_finish { get; set; } = string.Empty;
|
||||
public string chairman_dated { get; set; } = string.Empty;
|
||||
public int knowledge_level { get; set; }
|
||||
public int apply_level { get; set; }
|
||||
public int success_level { get; set; }
|
||||
public string achievement_other_desc { get; set; } = string.Empty;
|
||||
public int? achievement_other_level { get; set; }
|
||||
public int conduct1_level { get; set; }
|
||||
public int conduct2_level { get; set; }
|
||||
public int conduct3_level { get; set; }
|
||||
public int conduct4_level { get; set; }
|
||||
public int moral1_level { get; set; }
|
||||
public int moral2_level { get; set; }
|
||||
public int moral3_level { get; set; }
|
||||
public int discipline1_level { get; set; }
|
||||
public int discipline2_level { get; set; }
|
||||
public int discipline3_level { get; set; }
|
||||
public int discipline4_level { get; set; }
|
||||
public int discipline5_level { get; set; }
|
||||
public string behavior_other_desc { get; set; } = string.Empty;
|
||||
public int? behavior_other_level { get; set; }
|
||||
public int achievement_score { get; set; }
|
||||
public int achievement_score_total { get; set; }
|
||||
public int achievement_percent { get; set; }
|
||||
public int achievement_result { get; set; }
|
||||
public int behavior_score { get; set; }
|
||||
public int behavior_score_total { get; set; }
|
||||
public double behavior_percent { get; set; }
|
||||
public int behavior_result { get; set; }
|
||||
public int develop_orientation_score { get; set; }
|
||||
public int develop_self_learning_score { get; set; }
|
||||
public int develop_training_seminar_score { get; set; }
|
||||
public int develop_other_training_score { get; set; }
|
||||
public int develop_orientation_percent { get; set; }
|
||||
public int develop_self_learning_percent { get; set; }
|
||||
public int develop_training_seminar_percent { get; set; }
|
||||
public int develop_other_training_percent { get; set; }
|
||||
public int develop_result { get; set; }
|
||||
public int sum_score { get; set; }
|
||||
public double sum_percent { get; set; }
|
||||
public int evaluate_result { get; set; }
|
||||
public string createdAt { get; set; } = string.Empty;
|
||||
public string updatedAt { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
106
BMA.EHR.Application/Responses/EvaluateRecordAssignResponse.cs
Normal file
106
BMA.EHR.Application/Responses/EvaluateRecordAssignResponse.cs
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
using System;
|
||||
|
||||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class EvaluateRecordAssignResponse
|
||||
{
|
||||
public bool successful { get; set; }
|
||||
public Data data { get; set; }
|
||||
|
||||
public class Data
|
||||
{
|
||||
public Experimentee experimentee { get; set; }
|
||||
public Person person { get; set; }
|
||||
public Assign assign { get; set; }
|
||||
public List<Evaluate> evaluate { get; set; }
|
||||
}
|
||||
|
||||
public class Experimentee
|
||||
{
|
||||
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 Person
|
||||
{
|
||||
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 Evaluate
|
||||
{
|
||||
public string id { get; set; } = string.Empty;
|
||||
public string director_id { get; set; } = string.Empty;
|
||||
public string assign_id { get; set; } = string.Empty;
|
||||
public string no { get; set; } = string.Empty;
|
||||
public string date_start { get; set; } = string.Empty;
|
||||
public string date_finish { get; set; } = string.Empty;
|
||||
public string assessor_dated { get; set; } = string.Empty;
|
||||
public int knowledge_level { get; set; }
|
||||
public int skill_level { get; set; }
|
||||
public int competency_level { get; set; }
|
||||
public int learn_level { get; set; }
|
||||
public int apply_level { get; set; }
|
||||
public string achievement_other_desc { get; set; } = string.Empty;
|
||||
public int? achievement_other_level { get; set; }
|
||||
public string achievement_strength_desc { get; set; } = string.Empty;
|
||||
public string achievement_improve_desc { get; set; } = string.Empty;
|
||||
public int conduct1_level { get; set; }
|
||||
public int conduct2_level { get; set; }
|
||||
public int conduct3_level { get; set; }
|
||||
public int conduct4_level { get; set; }
|
||||
public int moral1_level { get; set; }
|
||||
public int moral2_level { get; set; }
|
||||
public int moral3_level { get; set; }
|
||||
public int discipline1_level { get; set; }
|
||||
public int discipline2_level { get; set; }
|
||||
public int discipline3_level { get; set; }
|
||||
public int discipline4_level { get; set; }
|
||||
public int discipline5_level { get; set; }
|
||||
public string behavior_other_desc { get; set; } = string.Empty;
|
||||
public int? behavior_other_level { get; set; }
|
||||
public string behavior_strength_desc { get; set; } = string.Empty;
|
||||
public string behavior_improve_desc { get; set; } = string.Empty;
|
||||
public int orientation { get; set; }
|
||||
public int self_learning { get; set; }
|
||||
public int training_seminar { get; set; }
|
||||
public int other_training { get; set; }
|
||||
public string createdAt { get; set; } = string.Empty;
|
||||
public string updatedAt { get; set; } = string.Empty;
|
||||
public List<Achievements> achievements { get; set; }
|
||||
}
|
||||
public class Achievements
|
||||
{
|
||||
public string evaluate_expect_desc { get; set; } = string.Empty;
|
||||
public int evaluate_expect_level { get; set; }
|
||||
public string evaluate_output_desc { get; set; } = string.Empty;
|
||||
public int evaluate_output_level { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
109
BMA.EHR.Application/Responses/EvaluateResultAssignResponse.cs
Normal file
109
BMA.EHR.Application/Responses/EvaluateResultAssignResponse.cs
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
using System;
|
||||
|
||||
namespace BMA.EHR.Application.Responses
|
||||
{
|
||||
public class EvaluateResultAssignResponse
|
||||
{
|
||||
public bool successful { get; set; }
|
||||
public Data data { get; set; }
|
||||
|
||||
public class Data
|
||||
{
|
||||
public Commander commander { get; set; }
|
||||
public Chairman chairman { get; set; }
|
||||
public List<Mentor> mentors { get; set; }
|
||||
public Experimentee experimentee { get; set; }
|
||||
public Assign assign { get; set; }
|
||||
public Evaluate evaluate { get; set; }
|
||||
}
|
||||
|
||||
public class Commander
|
||||
{
|
||||
public string personal_id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string PositionId { get; set; }
|
||||
public string PositionLevelId { get; set; }
|
||||
public string PositionLineId { get; set; }
|
||||
public string Position { get; set; }
|
||||
public string Department { get; set; }
|
||||
public string OrganizationOrganization { get; set; }
|
||||
public string Oc { get; set; }
|
||||
}
|
||||
|
||||
public class Chairman
|
||||
{
|
||||
public string personal_id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string PositionId { get; set; }
|
||||
public string PositionLevelId { get; set; }
|
||||
public string PositionLineId { get; set; }
|
||||
public string Position { get; set; }
|
||||
public string Department { get; set; }
|
||||
public string OrganizationOrganization { get; set; }
|
||||
public string Oc { get; set; }
|
||||
}
|
||||
|
||||
public class Mentor
|
||||
{
|
||||
public string personal_id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string PositionId { get; set; }
|
||||
public string PositionLevelId { get; set; }
|
||||
public string PositionLineId { get; set; }
|
||||
public string Position { get; set; }
|
||||
public string Department { get; set; }
|
||||
public string OrganizationOrganization { get; set; }
|
||||
public string Oc { get; set; }
|
||||
}
|
||||
|
||||
public class Experimentee
|
||||
{
|
||||
public string personal_id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string PositionId { get; set; }
|
||||
public string PositionLevelId { get; set; }
|
||||
public string PositionLineId { get; set; }
|
||||
public string Position { get; set; }
|
||||
public string Department { get; set; }
|
||||
public string OrganizationOrganization { get; set; }
|
||||
public string Oc { get; set; }
|
||||
}
|
||||
|
||||
public class Assign
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string personal_id { get; set; }
|
||||
public int round_no { get; set; }
|
||||
public string date_start { get; set; }
|
||||
public string date_finish { get; set; }
|
||||
public string behavior_desc { get; set; }
|
||||
public string other_desc { get; set; }
|
||||
public string other4_desc { get; set; }
|
||||
public string other5_no1_desc { get; set; }
|
||||
public string other5_no2_desc { get; set; }
|
||||
public string experimenter_dated { get; set; }
|
||||
public int active { get; set; }
|
||||
public string createdAt { get; set; }
|
||||
public string updatedAt { get; set; }
|
||||
}
|
||||
|
||||
public class Evaluate
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string director_id { get; set; }
|
||||
public string assign_id { get; set; }
|
||||
public int no { get; set; }
|
||||
public string date_start { get; set; }
|
||||
public string date_finish { get; set; }
|
||||
public int develop_complete { get; set; }
|
||||
public int pass_result { get; set; }
|
||||
public int expand_month { get; set; }
|
||||
public string reson { get; set; }
|
||||
public string chairman_dated { get; set; }
|
||||
public string director1_dated { get; set; }
|
||||
public string director2_dated { get; set; }
|
||||
public string createdAt { get; set; }
|
||||
public string updatedAt { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
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