Files
rmutr_report/Models/Personnel/personnel_salary_permanent.cs
kamonwan taengsuk 8a269157ad bug fixed
2023-03-30 15:30:14 +07:00

104 lines
4.8 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace rmutr_report.Models.Personnel
{
public class personnel_salary_permanent_root
{
[Key]
public Guid? personnel_salary_permanent_root_uid { get; set; }
public Guid? log_report_uid { get; set; }
public string year { get; set; }
// public string salary_text_1 { get; set; }
// public string salary_text_2 { get; set; }
// public string salary_text_3 { get; set; }
public int? salary { get; set; }
public int? estimate_promote_1 { get; set; }
public int? estimate_promote_2 { get; set; }
public int? estimate_promote_3 { get; set; }
public int? estimate_promote_4 { get; set; }
public int? salary_next_year_12 { get; set; }
public int? retiree { get; set; }
public int? salary_per_month { get; set; }
public int? salary_per_month_12 { get; set; }
public int? retirement_salary_per_year { get; set; }
public int? special_compensation { get; set; }
public int? special_compensation_12 { get; set; }
public int? full_salary { get; set; }
public int? special_compensation_1 { get; set; }
public int? special_compensation_2 { get; set; }
public int? special_compensation_3 { get; set; }
public string other { get; set; }
public string other_price { get; set; }
public int? total { get; set; }
public int? total_wages_and_fittings { get; set; }
public int? total_wages_and_fittings_12 { get; set; }
public List<t_personnel_salary_permanent> personnel_salary_permanent { get; set; }
}
public class t_personnel_salary_permanent
{
[Key]
public Guid? personnel_salary_permanent_uid { get; set; }
public Guid? personnel_salary_permanent_root_uid { get; set; }
public string agency_category_name { get; set; }
public int? salary { get; set; }
public int? estimate_promote_1 { get; set; }
public int? estimate_promote_2 { get; set; }
public int? estimate_promote_3 { get; set; }
public int? estimate_promote_4 { get; set; }
public int? salary_next_year_12 { get; set; }
public int? retiree { get; set; }
public int? salary_per_month { get; set; }
public int? salary_per_month_12 { get; set; }
public int? retirement_salary_per_year { get; set; }
public int? special_compensation { get; set; }
public int? special_compensation_12 { get; set; }
public int? full_salary { get; set; }
public int? special_compensation_1 { get; set; }
public int? special_compensation_2 { get; set; }
public int? special_compensation_3 { get; set; }
public string other { get; set; }
public string other_price { get; set; }
public int? total { get; set; }
public int? total_wages_and_fittings { get; set; }
public int? total_wages_and_fittings_12 { get; set; }
public List<t_personnel_salary_permanent_deltail> personnel_salary_deltails { get; set; }
}
public class t_personnel_salary_permanent_deltail
{
//public bool? is_color { get; set; }
[Key]
public Guid? personnel_salary_permanent_detail_uid { get; set; }
public Guid? personnel_salary_permanent_uid { get; set; }
public string manpower { get; set; }
public string full_name { get; set; }
public string first_name_th { get; set; }
public string last_name_th { get; set; }
public string position { get; set; }
public string parent_agency_name { get; set; }
public string area { get; set; }
public int? salary { get; set; }
public int? estimate_promote_1 { get; set; }
public int? estimate_promote_2 { get; set; }
public int? estimate_promote_3 { get; set; }
public int? estimate_promote_4 { get; set; }
public int? salary_next_year_12 { get; set; }
public int? retiree { get; set; }
public int? salary_per_month { get; set; }
public int? salary_per_month_12 { get; set; }
public int? retirement_salary_per_year { get; set; }
public int? special_compensation { get; set; }
public int? special_compensation_12 { get; set; }
public int? full_salary { get; set; }
public int? special_compensation_1 { get; set; }
public int? special_compensation_2 { get; set; }
public int? special_compensation_3 { get; set; }
public string other { get; set; }
public string other_price { get; set; }
public int? total { get; set; }
public int? total_wages_and_fittings { get; set; }
public int? total_wages_and_fittings_12 { get; set; }
}
}