wangxinhui
2024-09-23 a3eb67538c4716aef9967f1e6301720cce095e3c
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
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using WIDESEA_Entity.SystemModels;
namespace WIDESEA_Entity.materielinfo
{
    [Entity(TableCnName = "物料表", TableName = "dt_materielinfo")]
    [Table("dt_materielinfo")]
    public class dt_materielinfo : BaseEntity
    {
        /// <summary>
        ///主键
        /// </summary>
        [Key]
        [Display(Name = "materiel_pkid")]
        [Column(TypeName = "uniqueidentifier")]
        [Required(AllowEmptyStrings = false)]
        public Guid materiel_pkid { get; set; }
        /// <summary>
        ///物料编号
        /// </summary>
        [Display(Name = "materiel_id")]
        [MaxLength(100)]
        [Column(TypeName = "nvarchar(50)")]
        [Required(AllowEmptyStrings = false)]
        [Editable(true)]
        public string materiel_id { get; set; }
 
        /// <summary>
        ///物料名称
        /// </summary>
        [Display(Name = "materiel_name")]
        [MaxLength(50)]
        [Column(TypeName = "nvarchar(50)")]
        [Required(AllowEmptyStrings = false)]
        [Editable(true)]
        public string materiel_name { get; set; }
 
        /// <summary>
        ///物料状态
        /// </summary>
        [Display(Name = "materiel_state")]
        [MaxLength(50)]
        [Column(TypeName = "nvarchar(50)")]
        [Required(AllowEmptyStrings = false)]
        [Editable(true)]
        public string materiel_state { get; set; }
        /// <summary>
        ///创建者
        /// </summary>
        [Display(Name = "materiel_creator")]
        [MaxLength(200)]
        [Column(TypeName = "nvarchar(50)")]
        [Required(AllowEmptyStrings = false)]
        [Editable(true)]
        public string materiel_creator { get; set; }
 
 
 
        /// <summary>
        ///创建时间
        /// </summary>
        [Display(Name = "materiel_createtime")]
        [Column(TypeName = "datetime")]
        [Required(AllowEmptyStrings = false)]
        [Editable(true)]
        public DateTime? materiel_createtime { get; set; }
 
        /// <summary>
        ///预留
        /// </summary>
        [Display(Name = "materiel_text")]
        [MaxLength(200)]
        [Column(TypeName = "nvarchar(50)")]
        [Editable(true)]
        public string materiel_text { get; set; }
    }
 
}