Files
hrm_eva/Models/rep_eva_x/rep_eva_xInputModel2.cs
2021-02-17 16:44:40 +07:00

65 lines
2.8 KiB
C#

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; }
public string txt_status_self_a_click_date { get; set; }
public string txt_status_chief_a_click_date { get; set; }
}
}