人事資料

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
+12
View File
@@ -100,6 +100,18 @@ namespace Model
public virtual DbSet<receipt_style> receipt_style { get; set; } public virtual DbSet<receipt_style> receipt_style { get; set; }
public virtual DbSet<receipt_style_d> receipt_style_d { get; set; } public virtual DbSet<receipt_style_d> receipt_style_d { get; set; }
public virtual DbSet<pre_order> pre_order { get; set; } public virtual DbSet<pre_order> pre_order { get; set; }
public virtual DbSet<hr_arrange> hr_arrange { get; set; }
public virtual DbSet<hr_company> hr_company { get; set; }
public virtual DbSet<hr_employee> hr_employee { get; set; }
public virtual DbSet<hr_employee_family> hr_employee_family { get; set; }
public virtual DbSet<hr_employee_ins> hr_employee_ins { get; set; }
public virtual DbSet<hr_employee_ins_fam> hr_employee_ins_fam { get; set; }
public virtual DbSet<hr_employee_job> hr_employee_job { get; set; }
public virtual DbSet<hr_employee_traffic> hr_employee_traffic { get; set; }
public virtual DbSet<hr_ins_grade> hr_ins_grade { get; set; }
public virtual DbSet<hr_ins_ratio> hr_ins_ratio { get; set; }
public virtual DbSet<hr_org> hr_org { get; set; }
public virtual DbSet<hr_section> hr_section { get; set; }
public virtual int pager_eztrust(Nullable<int> startRowIndex, Nullable<int> pageSize, string tableName, string columnName, string sqlWhere, string orderBy, ObjectParameter rowCount) public virtual int pager_eztrust(Nullable<int> startRowIndex, Nullable<int> pageSize, string tableName, string columnName, string sqlWhere, string orderBy, ObjectParameter rowCount)
{ {
+241
View File
@@ -1108,6 +1108,247 @@ namespace Model
using System; using System;
using System.Collections.Generic; 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 partial class item
{ {
public int num { get; set; } public int num { get; set; }
+660
View File
@@ -556,6 +556,227 @@
<Property Name="CreatedAt" Type="datetime" /> <Property Name="CreatedAt" Type="datetime" />
<Property Name="UpdatedAt" Type="datetime" /> <Property Name="UpdatedAt" Type="datetime" />
</EntityType> </EntityType>
<EntityType Name="hr_arrange">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="arrange_id" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="arrange_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="name" Type="nvarchar" MaxLength="40" />
<Property Name="descriptions" Type="nvarchar" MaxLength="100" />
<Property Name="default_time" Type="varchar" MaxLength="20" />
</EntityType>
<EntityType Name="hr_company">
<Key>
<PropertyRef Name="company_id" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="name" Type="nvarchar" MaxLength="50" />
<Property Name="parent_id" Type="varchar" MaxLength="20" />
<Property Name="super_visor" Type="varchar" MaxLength="20" />
<Property Name="contactor" Type="varchar" MaxLength="20" />
<Property Name="web_site" Type="varchar" MaxLength="100" />
<Property Name="tel" Type="varchar" MaxLength="20" />
<Property Name="address" Type="nvarchar" MaxLength="200" />
<Property Name="email" Type="varchar" MaxLength="100" />
<Property Name="fax" Type="varchar" MaxLength="30" />
<Property Name="compiled" Type="varchar" MaxLength="20" />
<Property Name="eng_name" Type="nvarchar" MaxLength="200" />
<Property Name="descriptions" Type="nvarchar(max)" />
</EntityType>
<EntityType Name="hr_employee">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="employee_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="name" Type="nvarchar" MaxLength="100" />
<Property Name="org_no" Type="varchar" MaxLength="20" />
<Property Name="emp_type" Type="varchar" MaxLength="8" />
<Property Name="salary_type" Type="varchar" MaxLength="8" />
<Property Name="status" Type="varchar" MaxLength="8" />
<Property Name="eng_name" Type="varchar" MaxLength="100" />
<Property Name="work_email" Type="varchar" MaxLength="100" />
<Property Name="self_email" Type="varchar" MaxLength="100" />
<Property Name="tel" Type="varchar" MaxLength="20" />
<Property Name="mobile" Type="varchar" MaxLength="20" />
<Property Name="address" Type="nvarchar" MaxLength="200" />
<Property Name="contactor" Type="nvarchar" MaxLength="50" />
<Property Name="contactor_tel" Type="varchar" MaxLength="50" />
<Property Name="contactor_mobile" Type="varchar" MaxLength="20" />
<Property Name="contactor_address" Type="nvarchar" MaxLength="200" />
<Property Name="contactor_email" Type="varchar" MaxLength="100" />
<Property Name="birth_day" Type="datetime" />
<Property Name="blood" Type="varchar" MaxLength="8" />
<Property Name="height" Type="decimal" Precision="18" Scale="2" />
<Property Name="weight" Type="decimal" Precision="18" Scale="2" />
<Property Name="marrige" Type="varchar" MaxLength="8" />
<Property Name="sex" Type="varchar" MaxLength="8" />
<Property Name="military" Type="varchar" MaxLength="8" />
<Property Name="religion" Type="varchar" MaxLength="8" />
<Property Name="political" Type="varchar" MaxLength="8" />
<Property Name="nation" Type="varchar" MaxLength="8" />
<Property Name="aboriginal" Type="varchar" MaxLength="8" />
<Property Name="disability" Type="varchar" MaxLength="8" />
<Property Name="animal" Type="varchar" MaxLength="8" />
<Property Name="star" Type="varchar" MaxLength="8" />
<Property Name="id_no" Type="varchar" MaxLength="20" />
<Property Name="stay_id" Type="varchar" MaxLength="20" />
</EntityType>
<EntityType Name="hr_employee_family">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
<PropertyRef Name="family_seq" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="employee_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="family_seq" Type="varchar" MaxLength="4" Nullable="false" />
<Property Name="name" Type="nvarchar" MaxLength="100" />
<Property Name="relation" Type="varchar" MaxLength="8" />
<Property Name="sex" Type="varchar" MaxLength="8" />
<Property Name="id_no" Type="varchar" MaxLength="20" />
<Property Name="birth_day" Type="datetime" />
<Property Name="tel" Type="varchar" MaxLength="20" />
<Property Name="mobile" Type="varchar" MaxLength="50" />
<Property Name="email" Type="varchar" MaxLength="100" />
<Property Name="status" Type="varchar" MaxLength="8" />
</EntityType>
<EntityType Name="hr_employee_ins">
<Key>
<PropertyRef Name="id" />
</Key>
<Property Name="id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="employee_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="ins_type" Type="varchar" MaxLength="8" Nullable="false" />
<Property Name="effective_date" Type="datetime" Nullable="false" />
<Property Name="effective_type" Type="varchar" MaxLength="8" />
<Property Name="ins_grade" Type="varchar" MaxLength="8" />
<Property Name="ins_condition" Type="varchar" MaxLength="8" />
<Property Name="reason" Type="varchar" MaxLength="8" />
<Property Name="descriptions" Type="nvarchar(max)" />
</EntityType>
<EntityType Name="hr_employee_ins_fam">
<Key>
<PropertyRef Name="ins_id" />
<PropertyRef Name="family_seq" />
<PropertyRef Name="effective_date" />
<PropertyRef Name="effective_type" />
</Key>
<Property Name="ins_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="family_seq" Type="varchar" MaxLength="4" Nullable="false" />
<Property Name="effective_date" Type="datetime" Nullable="false" />
<Property Name="effective_type" Type="varchar" MaxLength="8" Nullable="false" />
<Property Name="reason" Type="varchar" MaxLength="8" />
<Property Name="descriptions" Type="nvarchar(max)" />
<Property Name="ins_condition" Type="varchar" MaxLength="8" />
</EntityType>
<EntityType Name="hr_employee_job">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
<PropertyRef Name="job_company" />
<PropertyRef Name="job_org" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="employee_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="job_company" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="job_org" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="title" Type="varchar" MaxLength="8" />
<Property Name="role_id" Type="varchar" MaxLength="8" />
</EntityType>
<EntityType Name="hr_employee_traffic">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
<PropertyRef Name="traffic_type" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="employee_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="traffic_type" Type="varchar" MaxLength="8" Nullable="false" />
<Property Name="license" Type="varchar" MaxLength="8" />
<Property Name="car" Type="varchar" MaxLength="8" />
</EntityType>
<!--產生期間發現錯誤:
警告 6013: 資料表/檢視 '17168erp_c1.dbo.hr_ins_condition' 未定義主索引鍵,也無法推斷有效的主索引鍵。此資料表/檢視已被排除。如果要使用此實體,您必須檢閱您的結構描述,加入正確的索引鍵,並將它取消註解。
<EntityType Name="hr_ins_condition">
<Property Name="ins_type" Type="varchar" MaxLength="8" />
<Property Name="seq" Type="varchar" MaxLength="4" />
<Property Name="descriptions" Type="nvarchar" MaxLength="100" />
<Property Name="self_ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="comp_ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="gov_ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="limit_amt" Type="decimal" Precision="18" Scale="0" />
</EntityType>-->
<EntityType Name="hr_ins_grade">
<Key>
<PropertyRef Name="ins_type" />
<PropertyRef Name="seq_no" />
<PropertyRef Name="effective_date" />
</Key>
<Property Name="ins_type" Type="varchar" MaxLength="8" Nullable="false" />
<Property Name="seq_no" Type="varchar" MaxLength="4" Nullable="false" />
<Property Name="start_amt" Type="decimal" Precision="18" Scale="0" />
<Property Name="end_amt" Type="decimal" Precision="18" Scale="0" />
<Property Name="self_pay" Type="decimal" Precision="18" Scale="0" />
<Property Name="comp_pay" Type="decimal" Precision="18" Scale="0" />
<Property Name="gov_pay" Type="decimal" Precision="18" Scale="0" />
<Property Name="ins_amt" Type="decimal" Precision="18" Scale="0" />
<Property Name="effective_date" Type="datetime" Nullable="false" />
</EntityType>
<EntityType Name="hr_ins_ratio">
<Key>
<PropertyRef Name="ins_type" />
<PropertyRef Name="effective_date" />
</Key>
<Property Name="ins_type" Type="varchar" MaxLength="8" Nullable="false" />
<Property Name="ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="employee_ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="company_ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="gov_ratio" Type="decimal" Precision="18" Scale="4" />
<Property Name="avg_dependents" Type="decimal" Precision="18" Scale="4" />
<Property Name="round_mode" Type="varchar" MaxLength="8" />
<Property Name="round_precision" Type="varchar" MaxLength="8" />
<Property Name="calc_sequence" Type="varchar" MaxLength="50" />
<Property Name="remainder_bearer" Type="varchar" MaxLength="20" />
<Property Name="effective_date" Type="datetime" Nullable="false" />
</EntityType>
<EntityType Name="hr_org">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="org_no" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="org_no" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="name" Type="nvarchar" MaxLength="100" />
<Property Name="parent_no" Type="varchar" MaxLength="20" />
<Property Name="charge_role" Type="varchar" MaxLength="20" />
<Property Name="eng_name" Type="varchar" MaxLength="100" />
<Property Name="descriptions" Type="nvarchar(max)" />
<Property Name="status" Type="varchar" MaxLength="8" />
<Property Name="org_type" Type="varchar" MaxLength="8" />
</EntityType>
<EntityType Name="hr_section">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="section_id" />
</Key>
<Property Name="company_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="section_id" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="name" Type="nvarchar" MaxLength="40" />
<Property Name="start_time" Type="varchar" MaxLength="10" />
<Property Name="end_time" Type="varchar" MaxLength="10" />
<Property Name="start_buffer" Type="varchar" MaxLength="10" />
<Property Name="end_buffer" Type="varchar" MaxLength="10" />
<Property Name="launch_rest_start" Type="varchar" MaxLength="10" />
<Property Name="launch_rest_end" Type="varchar" MaxLength="10" />
<Property Name="dinner_rest_start" Type="varchar" MaxLength="10" />
<Property Name="dinner_rest_end" Type="varchar" MaxLength="10" />
<Property Name="work_time" Type="decimal" Precision="18" Scale="2" />
</EntityType>
<EntityType Name="item"> <EntityType Name="item">
<Key> <Key>
<PropertyRef Name="num" /> <PropertyRef Name="num" />
@@ -2251,6 +2472,18 @@
<EntitySet Name="GuaDanOrder" EntityType="Self.GuaDanOrder" Schema="dbo" store:Type="Tables" /> <EntitySet Name="GuaDanOrder" EntityType="Self.GuaDanOrder" Schema="dbo" store:Type="Tables" />
<EntitySet Name="GuaDanOrderGuest" EntityType="Self.GuaDanOrderGuest" Schema="dbo" store:Type="Tables" /> <EntitySet Name="GuaDanOrderGuest" EntityType="Self.GuaDanOrderGuest" Schema="dbo" store:Type="Tables" />
<EntitySet Name="GuadanTimeSetting" EntityType="Self.GuadanTimeSetting" Schema="dbo" store:Type="Tables" /> <EntitySet Name="GuadanTimeSetting" EntityType="Self.GuadanTimeSetting" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_arrange" EntityType="Self.hr_arrange" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_company" EntityType="Self.hr_company" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_employee" EntityType="Self.hr_employee" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_employee_family" EntityType="Self.hr_employee_family" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_employee_ins" EntityType="Self.hr_employee_ins" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_employee_ins_fam" EntityType="Self.hr_employee_ins_fam" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_employee_job" EntityType="Self.hr_employee_job" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_employee_traffic" EntityType="Self.hr_employee_traffic" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_ins_grade" EntityType="Self.hr_ins_grade" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_ins_ratio" EntityType="Self.hr_ins_ratio" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_org" EntityType="Self.hr_org" Schema="dbo" store:Type="Tables" />
<EntitySet Name="hr_section" EntityType="Self.hr_section" Schema="dbo" store:Type="Tables" />
<EntitySet Name="item" EntityType="Self.item" Schema="dbo" store:Type="Tables" /> <EntitySet Name="item" EntityType="Self.item" Schema="dbo" store:Type="Tables" />
<EntitySet Name="member" EntityType="Self.member" Schema="dbo" store:Type="Tables" /> <EntitySet Name="member" EntityType="Self.member" Schema="dbo" store:Type="Tables" />
<EntitySet Name="member_check" EntityType="Self.member_check" Schema="dbo" store:Type="Tables" /> <EntitySet Name="member_check" EntityType="Self.member_check" Schema="dbo" store:Type="Tables" />
@@ -4709,6 +4942,18 @@
<EntitySet Name="receipt_style" EntityType="Model.receipt_style" /> <EntitySet Name="receipt_style" EntityType="Model.receipt_style" />
<EntitySet Name="receipt_style_d" EntityType="Model.receipt_style_d" /> <EntitySet Name="receipt_style_d" EntityType="Model.receipt_style_d" />
<EntitySet Name="pre_order" EntityType="Model.pre_order" /> <EntitySet Name="pre_order" EntityType="Model.pre_order" />
<EntitySet Name="hr_arrange" EntityType="Model.hr_arrange" />
<EntitySet Name="hr_company" EntityType="Model.hr_company" />
<EntitySet Name="hr_employee" EntityType="Model.hr_employee" />
<EntitySet Name="hr_employee_family" EntityType="Model.hr_employee_family" />
<EntitySet Name="hr_employee_ins" EntityType="Model.hr_employee_ins" />
<EntitySet Name="hr_employee_ins_fam" EntityType="Model.hr_employee_ins_fam" />
<EntitySet Name="hr_employee_job" EntityType="Model.hr_employee_job" />
<EntitySet Name="hr_employee_traffic" EntityType="Model.hr_employee_traffic" />
<EntitySet Name="hr_ins_grade" EntityType="Model.hr_ins_grade" />
<EntitySet Name="hr_ins_ratio" EntityType="Model.hr_ins_ratio" />
<EntitySet Name="hr_org" EntityType="Model.hr_org" />
<EntitySet Name="hr_section" EntityType="Model.hr_section" />
</EntityContainer> </EntityContainer>
<ComplexType Name="sp_helpdiagramdefinition_Result"> <ComplexType Name="sp_helpdiagramdefinition_Result">
<Property Type="Int32" Name="version" Nullable="true" /> <Property Type="Int32" Name="version" Nullable="true" />
@@ -5544,6 +5789,216 @@
<Property Name="reg_time" Type="DateTime" Precision="3" /> <Property Name="reg_time" Type="DateTime" Precision="3" />
<Property Name="receipt_num" Type="Int32" /> <Property Name="receipt_num" Type="Int32" />
</EntityType> </EntityType>
<EntityType Name="hr_arrange">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="arrange_id" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="arrange_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="40" FixedLength="false" Unicode="true" />
<Property Name="descriptions" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
<Property Name="default_time" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_company">
<Key>
<PropertyRef Name="company_id" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="parent_id" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="super_visor" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="contactor" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="web_site" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="tel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="address" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="email" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="fax" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
<Property Name="compiled" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="eng_name" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="descriptions" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
</EntityType>
<EntityType Name="hr_employee">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="employee_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
<Property Name="org_no" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="emp_type" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="salary_type" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="status" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="eng_name" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="work_email" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="self_email" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="tel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="mobile" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="address" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="contactor" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="contactor_tel" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="contactor_mobile" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="contactor_address" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="contactor_email" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="birth_day" Type="DateTime" Precision="3" />
<Property Name="blood" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="height" Type="Decimal" Precision="18" Scale="2" />
<Property Name="weight" Type="Decimal" Precision="18" Scale="2" />
<Property Name="marrige" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="sex" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="military" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="religion" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="political" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="nation" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="aboriginal" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="disability" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="animal" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="star" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="id_no" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="stay_id" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_employee_family">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
<PropertyRef Name="family_seq" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="employee_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="family_seq" Type="String" Nullable="false" MaxLength="4" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
<Property Name="relation" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="sex" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="id_no" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="birth_day" Type="DateTime" Precision="3" />
<Property Name="tel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="mobile" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="email" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="status" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_employee_ins">
<Key>
<PropertyRef Name="id" />
</Key>
<Property Name="id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="employee_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="ins_type" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="effective_date" Type="DateTime" Nullable="false" Precision="3" />
<Property Name="effective_type" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="ins_grade" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="ins_condition" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="reason" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="descriptions" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
</EntityType>
<EntityType Name="hr_employee_ins_fam">
<Key>
<PropertyRef Name="ins_id" />
<PropertyRef Name="family_seq" />
<PropertyRef Name="effective_date" />
<PropertyRef Name="effective_type" />
</Key>
<Property Name="ins_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="family_seq" Type="String" Nullable="false" MaxLength="4" FixedLength="false" Unicode="false" />
<Property Name="effective_date" Type="DateTime" Nullable="false" Precision="3" />
<Property Name="effective_type" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="reason" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="descriptions" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="ins_condition" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_employee_job">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
<PropertyRef Name="job_company" />
<PropertyRef Name="job_org" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="employee_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="job_company" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="job_org" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="title" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="role_id" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_employee_traffic">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="employee_id" />
<PropertyRef Name="traffic_type" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="employee_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="traffic_type" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="license" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="car" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_ins_grade">
<Key>
<PropertyRef Name="ins_type" />
<PropertyRef Name="seq_no" />
<PropertyRef Name="effective_date" />
</Key>
<Property Name="ins_type" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="seq_no" Type="String" Nullable="false" MaxLength="4" FixedLength="false" Unicode="false" />
<Property Name="start_amt" Type="Decimal" Precision="18" Scale="0" />
<Property Name="end_amt" Type="Decimal" Precision="18" Scale="0" />
<Property Name="self_pay" Type="Decimal" Precision="18" Scale="0" />
<Property Name="comp_pay" Type="Decimal" Precision="18" Scale="0" />
<Property Name="gov_pay" Type="Decimal" Precision="18" Scale="0" />
<Property Name="ins_amt" Type="Decimal" Precision="18" Scale="0" />
<Property Name="effective_date" Type="DateTime" Nullable="false" Precision="3" />
</EntityType>
<EntityType Name="hr_ins_ratio">
<Key>
<PropertyRef Name="ins_type" />
<PropertyRef Name="effective_date" />
</Key>
<Property Name="ins_type" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="ratio" Type="Decimal" Precision="18" Scale="4" />
<Property Name="employee_ratio" Type="Decimal" Precision="18" Scale="4" />
<Property Name="company_ratio" Type="Decimal" Precision="18" Scale="4" />
<Property Name="gov_ratio" Type="Decimal" Precision="18" Scale="4" />
<Property Name="avg_dependents" Type="Decimal" Precision="18" Scale="4" />
<Property Name="round_mode" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="round_precision" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="calc_sequence" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="remainder_bearer" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="effective_date" Type="DateTime" Nullable="false" Precision="3" />
</EntityType>
<EntityType Name="hr_org">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="org_no" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="org_no" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
<Property Name="parent_no" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="charge_role" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="eng_name" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
<Property Name="descriptions" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="status" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
<Property Name="org_type" Type="String" MaxLength="8" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="hr_section">
<Key>
<PropertyRef Name="company_id" />
<PropertyRef Name="section_id" />
</Key>
<Property Name="company_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="section_id" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="40" FixedLength="false" Unicode="true" />
<Property Name="start_time" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="end_time" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="start_buffer" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="end_buffer" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="launch_rest_start" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="launch_rest_end" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="dinner_rest_start" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="dinner_rest_end" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="work_time" Type="Decimal" Precision="18" Scale="2" />
</EntityType>
</Schema> </Schema>
</edmx:ConceptualModels> </edmx:ConceptualModels>
<!-- C-S mapping content --> <!-- C-S mapping content -->
@@ -6699,6 +7154,211 @@
</MappingFragment> </MappingFragment>
</EntityTypeMapping> </EntityTypeMapping>
</EntitySetMapping> </EntitySetMapping>
<EntitySetMapping Name="hr_arrange">
<EntityTypeMapping TypeName="Model.hr_arrange">
<MappingFragment StoreEntitySet="hr_arrange">
<ScalarProperty Name="default_time" ColumnName="default_time" />
<ScalarProperty Name="descriptions" ColumnName="descriptions" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="arrange_id" ColumnName="arrange_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_company">
<EntityTypeMapping TypeName="Model.hr_company">
<MappingFragment StoreEntitySet="hr_company">
<ScalarProperty Name="descriptions" ColumnName="descriptions" />
<ScalarProperty Name="eng_name" ColumnName="eng_name" />
<ScalarProperty Name="compiled" ColumnName="compiled" />
<ScalarProperty Name="fax" ColumnName="fax" />
<ScalarProperty Name="email" ColumnName="email" />
<ScalarProperty Name="address" ColumnName="address" />
<ScalarProperty Name="tel" ColumnName="tel" />
<ScalarProperty Name="web_site" ColumnName="web_site" />
<ScalarProperty Name="contactor" ColumnName="contactor" />
<ScalarProperty Name="super_visor" ColumnName="super_visor" />
<ScalarProperty Name="parent_id" ColumnName="parent_id" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_employee">
<EntityTypeMapping TypeName="Model.hr_employee">
<MappingFragment StoreEntitySet="hr_employee">
<ScalarProperty Name="stay_id" ColumnName="stay_id" />
<ScalarProperty Name="id_no" ColumnName="id_no" />
<ScalarProperty Name="star" ColumnName="star" />
<ScalarProperty Name="animal" ColumnName="animal" />
<ScalarProperty Name="disability" ColumnName="disability" />
<ScalarProperty Name="aboriginal" ColumnName="aboriginal" />
<ScalarProperty Name="nation" ColumnName="nation" />
<ScalarProperty Name="political" ColumnName="political" />
<ScalarProperty Name="religion" ColumnName="religion" />
<ScalarProperty Name="military" ColumnName="military" />
<ScalarProperty Name="sex" ColumnName="sex" />
<ScalarProperty Name="marrige" ColumnName="marrige" />
<ScalarProperty Name="weight" ColumnName="weight" />
<ScalarProperty Name="height" ColumnName="height" />
<ScalarProperty Name="blood" ColumnName="blood" />
<ScalarProperty Name="birth_day" ColumnName="birth_day" />
<ScalarProperty Name="contactor_email" ColumnName="contactor_email" />
<ScalarProperty Name="contactor_address" ColumnName="contactor_address" />
<ScalarProperty Name="contactor_mobile" ColumnName="contactor_mobile" />
<ScalarProperty Name="contactor_tel" ColumnName="contactor_tel" />
<ScalarProperty Name="contactor" ColumnName="contactor" />
<ScalarProperty Name="address" ColumnName="address" />
<ScalarProperty Name="mobile" ColumnName="mobile" />
<ScalarProperty Name="tel" ColumnName="tel" />
<ScalarProperty Name="self_email" ColumnName="self_email" />
<ScalarProperty Name="work_email" ColumnName="work_email" />
<ScalarProperty Name="eng_name" ColumnName="eng_name" />
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="salary_type" ColumnName="salary_type" />
<ScalarProperty Name="emp_type" ColumnName="emp_type" />
<ScalarProperty Name="org_no" ColumnName="org_no" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="employee_id" ColumnName="employee_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_employee_family">
<EntityTypeMapping TypeName="Model.hr_employee_family">
<MappingFragment StoreEntitySet="hr_employee_family">
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="email" ColumnName="email" />
<ScalarProperty Name="mobile" ColumnName="mobile" />
<ScalarProperty Name="tel" ColumnName="tel" />
<ScalarProperty Name="birth_day" ColumnName="birth_day" />
<ScalarProperty Name="id_no" ColumnName="id_no" />
<ScalarProperty Name="sex" ColumnName="sex" />
<ScalarProperty Name="relation" ColumnName="relation" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="family_seq" ColumnName="family_seq" />
<ScalarProperty Name="employee_id" ColumnName="employee_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_employee_ins">
<EntityTypeMapping TypeName="Model.hr_employee_ins">
<MappingFragment StoreEntitySet="hr_employee_ins">
<ScalarProperty Name="descriptions" ColumnName="descriptions" />
<ScalarProperty Name="reason" ColumnName="reason" />
<ScalarProperty Name="ins_condition" ColumnName="ins_condition" />
<ScalarProperty Name="ins_grade" ColumnName="ins_grade" />
<ScalarProperty Name="effective_type" ColumnName="effective_type" />
<ScalarProperty Name="effective_date" ColumnName="effective_date" />
<ScalarProperty Name="ins_type" ColumnName="ins_type" />
<ScalarProperty Name="employee_id" ColumnName="employee_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
<ScalarProperty Name="id" ColumnName="id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_employee_ins_fam">
<EntityTypeMapping TypeName="Model.hr_employee_ins_fam">
<MappingFragment StoreEntitySet="hr_employee_ins_fam">
<ScalarProperty Name="ins_condition" ColumnName="ins_condition" />
<ScalarProperty Name="descriptions" ColumnName="descriptions" />
<ScalarProperty Name="reason" ColumnName="reason" />
<ScalarProperty Name="effective_type" ColumnName="effective_type" />
<ScalarProperty Name="effective_date" ColumnName="effective_date" />
<ScalarProperty Name="family_seq" ColumnName="family_seq" />
<ScalarProperty Name="ins_id" ColumnName="ins_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_employee_job">
<EntityTypeMapping TypeName="Model.hr_employee_job">
<MappingFragment StoreEntitySet="hr_employee_job">
<ScalarProperty Name="role_id" ColumnName="role_id" />
<ScalarProperty Name="title" ColumnName="title" />
<ScalarProperty Name="job_org" ColumnName="job_org" />
<ScalarProperty Name="job_company" ColumnName="job_company" />
<ScalarProperty Name="employee_id" ColumnName="employee_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_employee_traffic">
<EntityTypeMapping TypeName="Model.hr_employee_traffic">
<MappingFragment StoreEntitySet="hr_employee_traffic">
<ScalarProperty Name="car" ColumnName="car" />
<ScalarProperty Name="license" ColumnName="license" />
<ScalarProperty Name="traffic_type" ColumnName="traffic_type" />
<ScalarProperty Name="employee_id" ColumnName="employee_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_ins_grade">
<EntityTypeMapping TypeName="Model.hr_ins_grade">
<MappingFragment StoreEntitySet="hr_ins_grade">
<ScalarProperty Name="effective_date" ColumnName="effective_date" />
<ScalarProperty Name="ins_amt" ColumnName="ins_amt" />
<ScalarProperty Name="gov_pay" ColumnName="gov_pay" />
<ScalarProperty Name="comp_pay" ColumnName="comp_pay" />
<ScalarProperty Name="self_pay" ColumnName="self_pay" />
<ScalarProperty Name="end_amt" ColumnName="end_amt" />
<ScalarProperty Name="start_amt" ColumnName="start_amt" />
<ScalarProperty Name="seq_no" ColumnName="seq_no" />
<ScalarProperty Name="ins_type" ColumnName="ins_type" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_ins_ratio">
<EntityTypeMapping TypeName="Model.hr_ins_ratio">
<MappingFragment StoreEntitySet="hr_ins_ratio">
<ScalarProperty Name="effective_date" ColumnName="effective_date" />
<ScalarProperty Name="remainder_bearer" ColumnName="remainder_bearer" />
<ScalarProperty Name="calc_sequence" ColumnName="calc_sequence" />
<ScalarProperty Name="round_precision" ColumnName="round_precision" />
<ScalarProperty Name="round_mode" ColumnName="round_mode" />
<ScalarProperty Name="avg_dependents" ColumnName="avg_dependents" />
<ScalarProperty Name="gov_ratio" ColumnName="gov_ratio" />
<ScalarProperty Name="company_ratio" ColumnName="company_ratio" />
<ScalarProperty Name="employee_ratio" ColumnName="employee_ratio" />
<ScalarProperty Name="ratio" ColumnName="ratio" />
<ScalarProperty Name="ins_type" ColumnName="ins_type" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_org">
<EntityTypeMapping TypeName="Model.hr_org">
<MappingFragment StoreEntitySet="hr_org">
<ScalarProperty Name="org_type" ColumnName="org_type" />
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="descriptions" ColumnName="descriptions" />
<ScalarProperty Name="eng_name" ColumnName="eng_name" />
<ScalarProperty Name="charge_role" ColumnName="charge_role" />
<ScalarProperty Name="parent_no" ColumnName="parent_no" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="org_no" ColumnName="org_no" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="hr_section">
<EntityTypeMapping TypeName="Model.hr_section">
<MappingFragment StoreEntitySet="hr_section">
<ScalarProperty Name="work_time" ColumnName="work_time" />
<ScalarProperty Name="dinner_rest_end" ColumnName="dinner_rest_end" />
<ScalarProperty Name="dinner_rest_start" ColumnName="dinner_rest_start" />
<ScalarProperty Name="launch_rest_end" ColumnName="launch_rest_end" />
<ScalarProperty Name="launch_rest_start" ColumnName="launch_rest_start" />
<ScalarProperty Name="end_buffer" ColumnName="end_buffer" />
<ScalarProperty Name="start_buffer" ColumnName="start_buffer" />
<ScalarProperty Name="end_time" ColumnName="end_time" />
<ScalarProperty Name="start_time" ColumnName="start_time" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="section_id" ColumnName="section_id" />
<ScalarProperty Name="company_id" ColumnName="company_id" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping> </EntityContainerMapping>
</Mapping> </Mapping>
</edmx:Mappings> </edmx:Mappings>
+12
View File
@@ -170,6 +170,18 @@
<EntityTypeShape EntityType="Model.receipt_style" Width="1.5" PointX="19.375" PointY="25.75" /> <EntityTypeShape EntityType="Model.receipt_style" Width="1.5" PointX="19.375" PointY="25.75" />
<EntityTypeShape EntityType="Model.receipt_style_d" Width="1.5" PointX="26.375" PointY="0.75" /> <EntityTypeShape EntityType="Model.receipt_style_d" Width="1.5" PointX="26.375" PointY="0.75" />
<EntityTypeShape EntityType="Model.pre_order" Width="1.5" PointX="0.75" PointY="26.75" /> <EntityTypeShape EntityType="Model.pre_order" Width="1.5" PointX="0.75" PointY="26.75" />
<EntityTypeShape EntityType="Model.hr_arrange" Width="1.5" PointX="0.75" PointY="5.75" />
<EntityTypeShape EntityType="Model.hr_company" Width="1.5" PointX="25.75" PointY="26.75" />
<EntityTypeShape EntityType="Model.hr_employee" Width="1.5" PointX="27.75" PointY="4.75" />
<EntityTypeShape EntityType="Model.hr_employee_family" Width="1.5" PointX="27.75" PointY="22.75" />
<EntityTypeShape EntityType="Model.hr_employee_ins" Width="1.5" PointX="27.75" PointY="26.75" />
<EntityTypeShape EntityType="Model.hr_employee_ins_fam" Width="1.5" PointX="28.75" PointY="0.75" />
<EntityTypeShape EntityType="Model.hr_employee_job" Width="1.5" PointX="29.75" PointY="4.75" />
<EntityTypeShape EntityType="Model.hr_employee_traffic" Width="1.5" PointX="29.75" PointY="7.75" />
<EntityTypeShape EntityType="Model.hr_ins_grade" Width="1.5" PointX="29.75" PointY="22.75" />
<EntityTypeShape EntityType="Model.hr_ins_ratio" Width="1.5" PointX="29.75" PointY="26.75" />
<EntityTypeShape EntityType="Model.hr_org" Width="1.5" PointX="30.75" PointY="0.75" />
<EntityTypeShape EntityType="Model.hr_section" Width="1.5" PointX="0.75" PointY="30.75" />
</Diagram> </Diagram>
</edmx:Diagrams> </edmx:Diagrams>
</edmx:Designer> </edmx:Designer>
+13
View File
@@ -0,0 +1,13 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/admin/Templates/TBS5ADM001/MasterPage.master" AutoEventWireup="true" CodeFile="company.aspx.cs" Inherits="admin_hrs_basic_company" %>
<asp:Content ID="Content1" ContentPlaceHolderID="page_header" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="page_nav" Runat="Server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="offCanvasRight" Runat="Server">
</asp:Content>
<asp:Content ID="Content5" ContentPlaceHolderID="footer_script" Runat="Server">
</asp:Content>
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class admin_hrs_basic_company : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
<div class="col-12 col-md-10 col-lg-10"> <div class="col-12 col-md-10 col-lg-10">
<div class="card shadow"> <div class="card shadow">
<div class="card-header bg-primary text-white text-center"> <div class="card-header bg-primary text-white text-center">
<h4 class="mb-0">款收據開立作業</h4> <h4 class="mb-0">據基本資料</h4>
</div> </div>
<div class="card-body"> <div class="card-body">
<div class="row"> <div class="row">