啊鑫
2024-11-15 ac8cd71489628366930b48ed650e2559ec98d339
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
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
 
namespace NewPdaSqlServer.entity
{
    /// <summary>
    /// 
    ///</summary>
    [SugarTable("MES_QA_ITEMS_DETECT_DETAIL12")]
    public class MesQaItemsDetectDetail12
    {
        /// <summary>
        ///  
        ///</summary>
        [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
        public Guid Guid { get; set; }
 
        /// <summary>
        /// 父亲Guid 
        ///</summary>
        [SugarColumn(ColumnName = "parent_guid")]
        public Guid? ParentGuid { get; set; }
 
        /// <summary>
        /// 爷爷Guid 
        ///</summary>
        [SugarColumn(ColumnName = "grandpa_guid")]
        public Guid? GrandpaGuid { get; set; }
 
        /// <summary>
        /// 检验结果 
        ///</summary>
        [SugarColumn(ColumnName = "fcheck_resu")]
        public string? FcheckResu { get; set; }
 
        /// <summary>
        /// 检验项目 
        ///</summary>
        [SugarColumn(ColumnName = "fcheck_item")]
        public string? FcheckItem { get; set; }
 
        /// <summary>
        /// 物料条码 
        ///</summary>
        [SugarColumn(ColumnName = "item_barcode")]
        public string? ItemBarcode { get; set; }
 
        /// <summary>
        ///  
        ///</summary>
        [SugarColumn(ColumnName = "create_date")]
        public DateTime? CreateDate { get; set; }
 
        /// <summary>
        /// 判定标志 
        ///</summary>
        [SugarColumn(ColumnName = "fstand")]
        public string? Fstand { get; set; }
 
        /// <summary>
        /// 生成人 
        ///</summary>
        [SugarColumn(ColumnName = "lastupdate_by")]
        public string? LastupdateBy { get; set; }
 
        /// <summary>
        ///  
        ///</summary>
        [SugarColumn(ColumnName = "create_by")]
        public string? CreateBy { get; set; }
 
        [SugarColumn(IsIgnore = true)] public int? count { get; set; }
    }
}