llj
17 小时以前 0faaa17ea9fc63b53793f1b9a7622e89169ecdaf
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
using System;
 
namespace WebAPI.Models
{
    public class ClsQC_RequestCheckBillMain
    {
        // 基础字段
        public int HYear { get; set; }
        public int HPeriod { get; set; }
        public string HBillType { get; set; }
        public string HBillSubType { get; set; }
        public int HInterID { get; set; }
        public DateTime HDate { get; set; }
        public string HBillNo { get; set; }
        public int HBillStatus { get; set; } 
        public int HCheckItemNowID { get; set; }
        public int HCheckItemNextID { get; set; }
        public int HCheckFlowID { get; set; }
        public string HRemark { get; set; }
        public string HBacker { get; set; }
        public DateTime? HBackDate { get; set; }
        public string HBackRemark { get; set; }
        public string HChecker { get; set; }
        public DateTime? HCheckDate { get; set; }
        public string HMaker { get; set; }
        public DateTime? HMakeDate { get; set; }
        public string HUpDater { get; set; }
        public DateTime? HUpDateDate { get; set; }
        public string HCloseMan { get; set; }
        public DateTime? HCloseDate { get; set; }
        public bool HCloseType { get; set; }
        public string HDeleteMan { get; set; }
        public DateTime? HDeleteDate { get; set; }
        public string HMainSourceBillType { get; set; }
        public int HMainSourceInterID { get; set; }
        public int HMainSourceEntryID { get; set; }
        public string HMainSourceBillNo { get; set; }
        public int HPrintQty { get; set; }
 
        // 自定义字段
        public int HSourceID { get; set; }
        public int HDeptID { get; set; }
        public string HBatchNo { get; set; }
        public int HCheckEmp { get; set; }
        public int HProcID { get; set; }
        public int HGroupID { get; set; }
        public int HShiftsID { get; set; }
        public string HTestType { get; set; }
        public int HSourceOrgID { get; set; }
        public int HInspectOrgID { get; set; }
    }
}