86 lines
3.9 KiB
C#
86 lines
3.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace rmutr_report.Models.Personnel
|
|
{
|
|
public class personnel_salary_government_employee_root //พนักงานราชการ
|
|
{
|
|
[Key]
|
|
public Guid? personnel_salary_government_employee_root_uid { get; set; }
|
|
public Guid? log_report_uid { get; set; }
|
|
public string year { get; set; }
|
|
public double? total_salary { get; set; }
|
|
public double? total_estimate_salary { get; set; }
|
|
public double? total_promote { get; set; }
|
|
public double? total { get; set; }
|
|
public double? total_salary_12 { get; set; }
|
|
public double? total_social_security { get; set; }
|
|
public double? total_social_security_12 { get; set; }
|
|
public double? total_social_compensation { get; set; }
|
|
public double? total_social_compensation_12 { get; set; }
|
|
public double? total_another2 { get; set; }
|
|
public double? total_quantity_money { get; set; }
|
|
public double? total2 { get; set; }
|
|
|
|
|
|
public double? including_salary_and_fittings { get; set; }
|
|
public double? including_salary_and_fittings_12 { get; set; }
|
|
public List<t_personnel_salary_government_employee> personnel_salary_government_employee { get; set; }
|
|
|
|
}
|
|
|
|
public class t_personnel_salary_government_employee
|
|
{
|
|
[Key]
|
|
public Guid? personnel_salary_government_employee_uid { get; set; }
|
|
public Guid? personnel_salary_government_employee_root_uid { get; set; }
|
|
|
|
public string agency_category_name { get; set; }
|
|
public double? total_salary { get; set; }
|
|
public double? total_estimate_salary { get; set; }
|
|
public double? total_promote { get; set; }
|
|
public double? total { get; set; }
|
|
public double? total_salary_12 { get; set; }
|
|
public double? total_social_security { get; set; }
|
|
public double? total_social_security_12 { get; set; }
|
|
public double? total_social_compensation { get; set; }
|
|
public double? total_social_compensation_12 { get; set; }
|
|
public double? total_another2 { get; set; }
|
|
public double? total_quantity_money { get; set; }
|
|
public double? total2 { get; set; }
|
|
public double? including_salary_and_fittings { get; set; }
|
|
public double? including_salary_and_fittings_12 { get; set; }
|
|
public List<t_personnel_salary_government_employee_deltail> personnel_salary_government_employee_deltail { get; set; }
|
|
public bool? is_footer { get; set; }
|
|
|
|
}
|
|
|
|
public class t_personnel_salary_government_employee_deltail
|
|
{
|
|
[Key]
|
|
public Guid? personnel_salary_government_employee_uid { get; set; }
|
|
public Guid? personnel_salary_government_employee_deltail_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 double? salary { get; set; }
|
|
public double? estimate_salary { get; set; }
|
|
public double? promote { get; set; }
|
|
public double? total { get; set; }
|
|
public double? salary_12 { get; set; }
|
|
public double? social_security { get; set; }
|
|
public double? social_security_12 { get; set; }
|
|
public double? social_compensation { get; set; }
|
|
public double? social_compensation_12 { get; set; }
|
|
public double? another2 { get; set; }
|
|
public double? quantity_money { get; set; }
|
|
public double? total2 { get; set; }
|
|
public double? including_salary_and_fittings { get; set; }
|
|
public double? including_salary_and_fittings_12 { get; set; }
|
|
}
|
|
} |