啊鑫
8 天以前 0aa54059b26e6641196e9953490dd18616e916e3
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
using SqlSugar;
 
namespace NewPdaSqlServer.entity;
 
/// <summary>
///     到货检验明细视图实体
/// </summary>
[SugarTable("v_dhmx")]
public class vDhmx
{
    /// <summary>
    ///     父级GUID
    /// </summary>
    [SugarColumn(ColumnName = "hGuid")]
    public string ParentGuid { get; set; }
 
    /// <summary>
    ///     明细GUID
    /// </summary>
    [SugarColumn(ColumnName = "dhmxGuid")]
    public string DetailGuid { get; set; }
 
    /// <summary>
    ///     数量
    /// </summary>
    [SugarColumn(ColumnName = "quantity")]
    public decimal Quantity { get; set; }
 
    /// <summary>
    ///     免检标识
    /// </summary>
    [SugarColumn(ColumnName = "免检")]
    public string ExemptInspection { get; set; }
 
    /// <summary>
    ///     检验状态
    /// </summary>
    [SugarColumn(ColumnName = "检验状态")]
    public string InspectionStatus { get; set; }
 
    /// <summary>
    ///     IQC提交状态
    /// </summary>
    [SugarColumn(ColumnName = "iqc提交")]
    public int IqcSubmission { get; set; }
 
    /// <summary>
    ///     检验结果
    /// </summary>
    [SugarColumn(ColumnName = "检验结果")]
    public string InspectionResult { get; set; }
 
    /// <summary>
    ///     判定结果
    /// </summary>
    [SugarColumn(ColumnName = "判定结果")]
    public string JudgmentResult { get; set; }
 
    /// <summary>
    ///     处理意见
    /// </summary>
    [SugarColumn(ColumnName = "处理意见")]
    public string HandlingSuggestion { get; set; }
 
    /// <summary>
    ///     挑选数量
    /// </summary>
    [SugarColumn(ColumnName = "挑选数量")]
    public decimal? SelectionQuantity { get; set; }
 
    /// <summary>
    ///     选别类别
    /// </summary>
    [SugarColumn(ColumnName = "选别类别")]
    public string SelectionType { get; set; }
 
    /// <summary>
    ///     是否能入库 (1:能入库 0:不能入库)
    /// </summary>
    [SugarColumn(ColumnName = "是否能入库")]
    public int CanStore { get; set; }
}