啊鑫
2024-10-25 cefcc903f51610846fa313a3a35bca34e129c1fe
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
83
84
85
86
87
88
89
90
91
92
93
94
95
using System;
 
namespace MES.Service.Modes
{
    /// <summary>
    ///     系统快码表
    /// </summary>
    public class MesSysLookups
    {
        /// <summary>
        ///     默认值: (newid())
        /// </summary>
        public Guid? Guid { get; set; }
 
        /// <summary>
        ///     父id
        /// </summary>
        public Guid? LookupGuid { get; set; }
 
        /// <summary>
        ///     系统快码值
        /// </summary>
        public string LookupValue { get; set; }
 
        /// <summary>
        ///     系统快码显示值
        /// </summary>
        public string LookupName { get; set; }
 
        /// <summary>
        ///     顺序值
        /// </summary>
        public long? OrderNo { get; set; }
 
        /// <summary>
        ///     内部代码|系统特殊使用
        /// </summary>
        public string InsideCode { get; set; }
 
        /// <summary>
        ///     备注
        /// </summary>
        public string Description { get; set; }
 
        /// <summary>
        ///     创建人
        /// </summary>
        public string CreateBy { get; set; }
 
        /// <summary>
        ///     创建时间
        /// </summary>
        public DateTime? CreateDate { get; set; }
 
        /// <summary>
        ///     最后更新人
        /// </summary>
        public string LastupdateBy { get; set; }
 
        /// <summary>
        ///     最后更新时间
        /// </summary>
        public DateTime? LastupdateDate { get; set; }
 
        /// <summary>
        ///     工作中心编码
        /// </summary>
        public string WorkCenter { get; set; }
 
        /// <summary>
        ///     工作中心名称
        /// </summary>
        public string WorkCenterName { get; set; }
 
        /// <summary>
        ///     工厂
        /// </summary>
        public string Factory { get; set; }
 
        /// <summary>
        ///     分类(手工和自动)
        /// </summary>
        public string FType { get; set; }
 
        /// <summary>
        ///     公司
        /// </summary>
        public string Company { get; set; }
 
        /// <summary>
        ///     检查大类
        /// </summary>
        public string FqmTypeId { get; set; }
    }
}