王 垚
2021-12-21 f71ca7b0acd828b9f70748c42e48d833962625c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Gy_Employee
    {
        public long HItemID { get; set; }
        public string HNumber { get; set; }       // 代码
        public string HName { get; set; }         //  
        public string HShortNumber { get; set; }   //短代码
        public string HHelpCode { get; set; }      //助记码
        public long HParentID { get; set; }      //父级ID
        public string HLevel { get; set; }
        public bool HEndFlag { get; set; }      //末级标志
        public bool HStopflag { get; set; }     //禁用标志
        public string HRemark { get; set; }       //备注
        public string HUseFlag { get; set; }      //使用标志
        public string HSex { get; set; }
        public string HIDCard { get; set; }
        public string HBirthDay { get; set; }
        public string HAddress { get; set; }
        public string HLinkPhone { get; set; }
        public string HMobilePhone { get; set; }
       
        public string HFax { get; set; }
        public string HPostalCode { get; set; }
        public string HEmail { get; set; }
        public string HBank { get; set; }
        public string HBankAccount { get; set; }
        public long HGroupID { get; set; }
        public long HDeptID { get; set; }
        public long HPostID { get; set; }
        public long HWorkTypeID { get; set; }
       
        public long HCTPrjID { get; set; }
        public long HProcID { get; set; }
        public string HBasePay { get; set; }
 
        public DateTime HInComDate { get; set; }
        public DateTime HDimissionDate { get; set; }
        public bool HOverType { get; set; }
        public string HEmpType { get; set; }
        public string HOtherDeduct3 { get; set; }
        public string HDrydock { get; set; }
        public string HInsurance { get; set; }
        public string HMedicare { get; set; }
        public bool HNoBrushFlag { get; set; }
        public bool HShiftFlag { get; set; }
        public DateTime HContactDate { get; set; }
        public bool HStopwagesFlag { get; set; }
        public string HDimissionReason { get; set; }
        public long HDormID { get; set; }
        public string HArchivesNo { get; set; }
        public DateTime HStayCardEDate { get; set; }
        public DateTime HCheckCardEDate { get; set; }
        public string HJobCardNo { get; set; }
        public DateTime HJobCardEDate { get; set; }
        public string HWorkType { get; set; }
        public long HContractYear { get; set; }
        public DateTime HContractBDate { get; set; }
        public DateTime HContractEDate { get; set; }
        public string HInsuranceNo { get; set; }
        public DateTime HInsuranceDate { get; set; }
        public bool HInsuranceStatus { get; set; }
        public DateTime HSignDate { get; set; }
        public bool HSignStatus { get; set; }
        public string HOldCompany { get; set; }
        public string HMarr { get; set; }
        public string HHomeAdd { get; set; }
        public string HNowAdd { get; set; }
        public string HSpec { get; set; }
        public string HCompLev { get; set; }
        public string HEngLev { get; set; }
        public DateTime HGradDate { get; set; }
        public string HGradSchool { get; set; }
        public string HSalaryLev { get; set; }
        public long HDutyID { get; set; }
        public string HProTitleID { get; set; }
        public string HKnowLev { get; set; }
        public string HAvoird { get; set; }
        public string HStature { get; set; }
        public string HBloodType { get; set; }
        public string HBlightyType { get; set; }
        public string HGovStatus { get; set; }
        public string HNation { get; set; }
        public string HBlighty { get; set; }
        public long HAge { get; set; }
        public string HExamLevPostMoney { get; set; }
        public string HBSTDeptID { get; set; }
        public string HRelDate { get; set; }
        public string HHighestPay { get; set; }
        public string HOverPayRate { get; set; }
        public string HLeftMoneyRate { get; set; }
        public string HInsuranceSubsidy { get; set; }
        public string HPayType { get; set; }
        public string HStdDayTimes { get; set; }
        public string HStdDayPay { get; set; }
        public string HMinDayPay { get; set; }
        public string HMinMonthPay { get; set; }
        public DateTime HMadeDate { get; set; }
        public string HEmpRate { get; set; }
        public string HExamRate { get; set; }
        public DateTime HHealthCardEDate { get; set; }
    }
}