duhe
2025-03-26 7eb2427db47b9cd9413a3ef51afd34658ed71c3d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class CheckItem
    {
        public long HItemID { get; set; }     //ID
        public string HNumber { get; set; }   //代码
        public string HName { get; set; }     //名称
        public string HShortNumber { get; set; }  //短代码
        public long HParentID { get; set; }      //父级ID
        public long HLevel { get; set; }      //层级
        public long HEndFlag { get; set; }      //
 
        public string HHelpCode { get; set; }   // 助记码
 
        public string HRemark { get; set; }    //备注
        public string HMakeEmp { get; set; }   
 
        public bool HStopflag { get; set; }  //禁用标志
 
        public string HUseFlag { get; set; }   //使用状态
 
        public long HQCCheckClassID { get; set; } //检验项目类别ID
        public long HUSEORGID { get; set; }  
        public long HCREATEORGID { get; set; }  
 
        public string HQCCheckClassName { get; set; }//检验项目类别
        public string HDefaultResult { get; set; }//默认结论
 
        public long HUnitID { get; set; }      //
        public string HAnalysisMethod { get; set; }      //
        public string HDefectLevel { get; set; }      //
        public long HDestructInspect { get; set; }      //
        public long HKeyInspect { get; set; }      //
        public long HQualityStdID { get; set; }      //
        public long HInspectMethodID { get; set; }      //
        public long HInspectInstruMentID { get; set; }      //
        public long HInspectBasisID { get; set; }      //
        public long HSampleSchemeID { get; set; }      //
        public long HISsystemSet { get; set; }      //
    }
}