edit api
This commit is contained in:
@@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace rmutr_report.Models.Personnel
|
||||
{
|
||||
public class personnel_salary_government_root
|
||||
public class personnel_salary_government_root //ข้าราชการ
|
||||
{
|
||||
[Key]
|
||||
public Guid? personnel_salary_government_root_uid { get; set; }
|
||||
|
||||
86
Models/Personnel/personnel_salary_government_employee.cs
Normal file
86
Models/Personnel/personnel_salary_government_employee.cs
Normal file
@@ -0,0 +1,86 @@
|
||||
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 int? total_salary { get; set; }
|
||||
public int? total_estimate_salary { get; set; }
|
||||
public int? total_promote { get; set; }
|
||||
public int? total { get; set; }
|
||||
public int? total_salary_12 { get; set; }
|
||||
public int? total_social_security { get; set; }
|
||||
public int? total_social_security_12 { get; set; }
|
||||
public int? total_social_compensation { get; set; }
|
||||
public int? total_social_compensation_12 { get; set; }
|
||||
public int? total_another2 { get; set; }
|
||||
public int? total_quantity_money { get; set; }
|
||||
public int? total2 { get; set; }
|
||||
|
||||
|
||||
public int? including_salary_and_fittings { get; set; }
|
||||
public int? 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 int? total_salary { get; set; }
|
||||
public int? total_estimate_salary { get; set; }
|
||||
public int? total_promote { get; set; }
|
||||
public int? total { get; set; }
|
||||
public int? total_salary_12 { get; set; }
|
||||
public int? total_social_security { get; set; }
|
||||
public int? total_social_security_12 { get; set; }
|
||||
public int? total_social_compensation { get; set; }
|
||||
public int? total_social_compensation_12 { get; set; }
|
||||
public int? total_another2 { get; set; }
|
||||
public int? total_quantity_money { get; set; }
|
||||
public int? total2 { get; set; }
|
||||
public int? including_salary_and_fittings { get; set; }
|
||||
public int? 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 int? salary { get; set; }
|
||||
public int? estimate_salary { get; set; }
|
||||
public int? promote { get; set; }
|
||||
public int? total { get; set; }
|
||||
public int? salary_12 { get; set; }
|
||||
public int? social_security { get; set; }
|
||||
public int? social_security_12 { get; set; }
|
||||
public int? social_compensation { get; set; }
|
||||
public int? social_compensation_12 { get; set; }
|
||||
public int? another2 { get; set; }
|
||||
public int? quantity_money { get; set; }
|
||||
public int? total2 { get; set; }
|
||||
public int? including_salary_and_fittings { get; set; }
|
||||
public int? including_salary_and_fittings_12 { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace rmutr_report.Models.Personnel
|
||||
{
|
||||
public class personnel_salary_permanent_root
|
||||
public class personnel_salary_permanent_root //ลูกจ้างประจํา
|
||||
{
|
||||
[Key]
|
||||
public Guid? personnel_salary_permanent_root_uid { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user