1
zrg
2025-02-13 7142066b1bc6df5a25e429de59a934b44237ed50
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class QC_OutCompCheckBillSub : DBUtility.ClsXt_BaseBillSub
    {   
        public long HQCCheckClassID { get; set; }
        public long HQCCheckItemID { get; set; }
        public string HQCStd { get; set; }
        public string HResult { get; set; }
 
 
        //新增字段24/12/10
        public String HUnit { get; set; }
        public String HQCNote { get; set; }
        public String HMax { get; set; }
        public String HMin { get; set; }
        public String HAvg { get; set; }
        public Int64 HSampleSchemeID { get; set; }
        public Int64 HSampleQty { get; set; }
        public double HSampleDamageQty { get; set; }
        public Int64 HAcceptQty { get; set; }
        public Int64 HRejectQty { get; set; }
        public double HSampleUnRightQty { get; set; }
        public String HStatus { get; set; }
        public Int64 HUnitID { get; set; }
        public String HInspectVal { get; set; }
        public String HTargetVal { get; set; }
        public String HUpLimit { get; set; }
        public String HDownLimit { get; set; }
        public String HUpOffSet { get; set; }
        public String HDownOffSet { get; set; }
        public String HAnalysisMethod { get; set; }
        public Int64 HKeyInspect { get; set; }
        public Int64 HInspectInstruMentID { get; set; }
        public String HInspectResult { get; set; }
 
    }
}