using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; using TTSW.EF; using TTSW.Utils; using TTSW.Constant; using TTSW.Common; namespace TodoAPI2.Models { public class rep_eva_xInputModel2 { public int? create_evaluation_detail_id { get; set; } public string employee_fullname { get; set; } public string employee_code { get; set; } public string employee_position_type { get; set; } public string employee_position_level { get; set; } public string employee_org { get; set; } public string employee_position { get; set; } public string image_url { get; set; } public string chief_fullname { get; set; } public string chief_position { get; set; } public string supervisor2_fullname { get; set; } public string supervisor2_position { get; set; } public string supervisor1A_fullname { get; set; } public string supervisor1A_position { get; set; } public string supervisor2A_fullname { get; set; } public string supervisor2A_position { get; set; } public string leave_period { get; set; } public string main_dept { get; set; } public int? selected_round { get; set; } public string round1_text { get; set; } public string round2_text { get; set; } public decimal? total_summary_supervisor2A { get; set; } public decimal? Final_summary_supervisor2A { get; set; } public decimal? total_summary_competency_supervisor2A { get; set; } public decimal? Final_summary_competency_supervisor2A { get; set; } public decimal? achievement_supervisor2A { get; set; } public decimal? competency_supervisor2A { get; set; } public decimal? score_supervisor2A { get; set; } public string level_score_supervisor2A { get; set; } public decimal? w1 { get; set; } public decimal? w2 { get; set; } public decimal? sum_day_sick_leave { get; set; } public decimal? count_sick_leave { get; set; } public decimal? sum_day_personal_leave { get; set; } public decimal? count_personal_leave { get; set; } public decimal? sum_day_vacation_leave { get; set; } public decimal? count_stop_working { get; set; } public decimal? count_late_tad_processing_time_results { get; set; } public decimal? count_absence_tad_processing_time_results { get; set; } public decimal? sum_day_sick_personal_leave { get; set; } public decimal? count_sick_personal_leave { get; set; } } }