1
wtt
8 天以前 aa51348d3501aa3a9bbda287929f3c8a05825063
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Driver
    {
        public long HItemID { get; set; }
        public string HNumber { get; set; }
        public string HName { get; set; }
        public string HShortNumber { get; set; }
        public string HRemark { get; set; }
        public string HUseFlag { get; set; }
        public long HParentID { get; set; }
 
        public long HCREATEORGID { get; set; }
        public long HUSEORGID { get; set; }
        public string HHelpCode { get; set; }
        public int? HStopflag { get; set; }
        public string HModifyEmp { get; set; }
        public string HStopEmp { get; set; }
        public string HStopTime { get; set; }
        public string HModifyTime { get; set; }
        public string HCheckTime { get; set; }
        public string HMakeTime { get; set; }
        public string HMakeEmp { get; set; }
 
        //zidingyi
        public string HIDCard { get; set; }
        public string HPhone { get; set; }
        public string HDriverCardPic { get; set; }
        public string HDriverCardType { get; set; }
        public string HIDCardPic { get; set; }
        public string HEmpType { get; set; }
        public int HCompID { get; set; }
 
    }
}