qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
96
97
98
99
100
101
102
103
104
 
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Entity.SystemModels;
 
namespace WIDESEA_Entity.DomainModels
{
    [Entity(TableCnName = "站台管理",TableName = "dt_stationmanager")]
    public class dt_stationmanager:BaseEntity
    {
        /// <summary>
       ///主键
       /// </summary>
       [Key]
       [Display(Name ="主键")]
       [Column(TypeName="uniqueidentifier")]
       [Required(AllowEmptyStrings=false)]
       public Guid sm_id { get; set; }
 
       /// <summary>
       ///出入库口编号(虚拟编号)
       /// </summary>
       [Display(Name ="出入库口编号(虚拟编号)")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       [Required(AllowEmptyStrings=false)]
       public string sm_no { get; set; }
 
       /// <summary>
       ///设备编号(实际编号)
       /// </summary>
       [Display(Name ="设备编号(实际编号)")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       [Required(AllowEmptyStrings=false)]
       public string sm_equipno { get; set; }
 
       /// <summary>
       ///是否启用
       /// </summary>
       [Display(Name ="是否启用")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       [Required(AllowEmptyStrings=false)]
       public string sm_enable { get; set; }
 
       /// <summary>
       ///类型(出入库口,出入库站台)
       /// </summary>
       [Display(Name ="类型(出入库口,出入库站台)")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       [Required(AllowEmptyStrings=false)]
       public string sm_type { get; set; }
 
       /// <summary>
       ///对应物料类型
       /// </summary>
       [Display(Name ="对应物料类型")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string sm_materieltype { get; set; }
 
       /// <summary>
       ///对应设备编号
       /// </summary>
       [Display(Name ="对应设备编号")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string sm_currentequip { get; set; }
 
       /// <summary>
       ///创建时间
       /// </summary>
       [Display(Name ="创建时间")]
       [Column(TypeName="datetime")]
       [Required(AllowEmptyStrings=false)]
       public DateTime sm_createtime { get; set; }
 
       /// <summary>
       ///创建者
       /// </summary>
       [Display(Name ="创建者")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       [Required(AllowEmptyStrings=false)]
       public string sm_creator { get; set; }
 
       /// <summary>
       ///备注
       /// </summary>
       [Display(Name ="备注")]
       [MaxLength(400)]
       [Column(TypeName="nvarchar(400)")]
       public string sm_remark { get; set; }
 
       
    }
}