lu
2025-03-19 77bb288cb1059a349bc38fb2255fcdfe2ddc3b32
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
using System;
using System.Collections.Generic;
using System.Linq;
 
namespace MES.Service.Modes
{
    /// <summary>
    /// 缺陷类别表
    ///</summary>
    public class MesDefectType
    {
        /// <summary>
        /// guid 
        /// 默认值: (newid())
        ///</summary>
        public Guid Guid { 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 TypeNo { get; set; }
 
        /// <summary>
        /// 缺陷类别描述 
        ///</summary>
        public string TypeMemo { get; set; }
    }
}