人事資料

This commit is contained in:
2026-08-14 15:54:52 +08:00
parent 700f92fcbc
commit 68860331ce
7 changed files with 953 additions and 1 deletions
+241
View File
@@ -1108,6 +1108,247 @@ namespace Model
using System;
using System.Collections.Generic;
public partial class hr_arrange
{
public string company_id { get; set; }
public string arrange_id { get; set; }
public string name { get; set; }
public string descriptions { get; set; }
public string default_time { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_company
{
public string company_id { get; set; }
public string name { get; set; }
public string parent_id { get; set; }
public string super_visor { get; set; }
public string contactor { get; set; }
public string web_site { get; set; }
public string tel { get; set; }
public string address { get; set; }
public string email { get; set; }
public string fax { get; set; }
public string compiled { get; set; }
public string eng_name { get; set; }
public string descriptions { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_employee
{
public string company_id { get; set; }
public string employee_id { get; set; }
public string name { get; set; }
public string org_no { get; set; }
public string emp_type { get; set; }
public string salary_type { get; set; }
public string status { get; set; }
public string eng_name { get; set; }
public string work_email { get; set; }
public string self_email { get; set; }
public string tel { get; set; }
public string mobile { get; set; }
public string address { get; set; }
public string contactor { get; set; }
public string contactor_tel { get; set; }
public string contactor_mobile { get; set; }
public string contactor_address { get; set; }
public string contactor_email { get; set; }
public Nullable<System.DateTime> birth_day { get; set; }
public string blood { get; set; }
public Nullable<decimal> height { get; set; }
public Nullable<decimal> weight { get; set; }
public string marrige { get; set; }
public string sex { get; set; }
public string military { get; set; }
public string religion { get; set; }
public string political { get; set; }
public string nation { get; set; }
public string aboriginal { get; set; }
public string disability { get; set; }
public string animal { get; set; }
public string star { get; set; }
public string id_no { get; set; }
public string stay_id { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_employee_family
{
public string company_id { get; set; }
public string employee_id { get; set; }
public string family_seq { get; set; }
public string name { get; set; }
public string relation { get; set; }
public string sex { get; set; }
public string id_no { get; set; }
public Nullable<System.DateTime> birth_day { get; set; }
public string tel { get; set; }
public string mobile { get; set; }
public string email { get; set; }
public string status { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_employee_ins
{
public string id { get; set; }
public string company_id { get; set; }
public string employee_id { get; set; }
public string ins_type { get; set; }
public System.DateTime effective_date { get; set; }
public string effective_type { get; set; }
public string ins_grade { get; set; }
public string ins_condition { get; set; }
public string reason { get; set; }
public string descriptions { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_employee_ins_fam
{
public string ins_id { get; set; }
public string family_seq { get; set; }
public System.DateTime effective_date { get; set; }
public string effective_type { get; set; }
public string reason { get; set; }
public string descriptions { get; set; }
public string ins_condition { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_employee_job
{
public string company_id { get; set; }
public string employee_id { get; set; }
public string job_company { get; set; }
public string job_org { get; set; }
public string title { get; set; }
public string role_id { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_employee_traffic
{
public string company_id { get; set; }
public string employee_id { get; set; }
public string traffic_type { get; set; }
public string license { get; set; }
public string car { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_ins_grade
{
public string ins_type { get; set; }
public string seq_no { get; set; }
public Nullable<decimal> start_amt { get; set; }
public Nullable<decimal> end_amt { get; set; }
public Nullable<decimal> self_pay { get; set; }
public Nullable<decimal> comp_pay { get; set; }
public Nullable<decimal> gov_pay { get; set; }
public Nullable<decimal> ins_amt { get; set; }
public System.DateTime effective_date { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_ins_ratio
{
public string ins_type { get; set; }
public Nullable<decimal> ratio { get; set; }
public Nullable<decimal> employee_ratio { get; set; }
public Nullable<decimal> company_ratio { get; set; }
public Nullable<decimal> gov_ratio { get; set; }
public Nullable<decimal> avg_dependents { get; set; }
public string round_mode { get; set; }
public string round_precision { get; set; }
public string calc_sequence { get; set; }
public string remainder_bearer { get; set; }
public System.DateTime effective_date { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_org
{
public string company_id { get; set; }
public string org_no { get; set; }
public string name { get; set; }
public string parent_no { get; set; }
public string charge_role { get; set; }
public string eng_name { get; set; }
public string descriptions { get; set; }
public string status { get; set; }
public string org_type { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class hr_section
{
public string company_id { get; set; }
public string section_id { get; set; }
public string name { get; set; }
public string start_time { get; set; }
public string end_time { get; set; }
public string start_buffer { get; set; }
public string end_buffer { get; set; }
public string launch_rest_start { get; set; }
public string launch_rest_end { get; set; }
public string dinner_rest_start { get; set; }
public string dinner_rest_end { get; set; }
public Nullable<decimal> work_time { get; set; }
}
}
namespace Model
{
using System;
using System.Collections.Generic;
public partial class item
{
public int num { get; set; }