Station.cs
1.74 KB
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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
    /// <summary>
	/// 站台表
	/// </summary>
    [Table("station")]
    public partial class Station : SysEntity
    {
        public Station()
        {
        }
        /// <summary>
	    /// 编号
	    /// </summary>
        [Column("code")]
        public string Code { get; set; }
        /// <summary>
	    /// 名称
	    /// </summary>
        [Column("name")]
        public string Name { get; set; }
        /// <summary>
	    /// 容器编号
	    /// </summary>
        [Column("containercode")]
        public string Containercode { get; set; }
        /// <summary>
	    /// 入库站台
	    /// </summary>
        [Column("isIn")]
        public int? IsIn { get; set; }
        /// <summary>
	    /// 出库站台
	    /// </summary>
        [Column("isOut")]
        public int? IsOut { get; set; }
        /// <summary>
	    /// 补空托
	    /// </summary>
        [Column("isEmpty")]
        public int? IsEmpty { get; set; }
        /// <summary>
	    /// 禁用
	    /// </summary>
        [Column("isStop")]
        public int? IsStop { get; set; }
        /// <summary>
        /// 是否卡控单据(0不卡,1卡控)
        /// </summary>
        [Column("isPass")]
        public int? IsPass { get; set; }
        /// <summary>
	    /// 站台类型
	    /// </summary>
        [Column("type")]
        public int? Type { get; set; }
        /// <summary>
        /// 暂存区最大数量
        /// </summary>
        [Column("maxNum")]
        public int? MaxNum { get; set; }
        /// <summary>
        /// 是否占用终点站台
        /// </summary>
        [Column("isOccupy")]
        public int? IsOccupy { get; set; }
    }
}