1
HuBingJie
5 天以前 7ac6ad15e5af1024f4d21d33bb3af98ffce43874
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
 
    [SugarTable("AGVStation", "站台表")]
    public class AGVStation
    {
        /// <summary>
        /// 站台ID
        /// </summary>
        [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "站台ID")]
        public int Station_id { get; set; }
 
        /// <summary>
        /// 站台编号
        /// </summary>
        [SugarColumn( ColumnDescription = "站台编号")]
        public int Station_code { get; set; }
 
        /// <summary>
        /// 站台名称remark
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "站台名称")]
        public string Station_name { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        [SugarColumn( ColumnDescription = "站台类型")]
        public int Station_material { get; set; }
 
        /// <summary>
        /// 是否启用
        /// </summary>
        [SugarColumn( ColumnDescription = "是否启用")]
        public int Station_enable { get; set; }
 
        /// <summary>
        /// 区域
        /// </summary>
        [SugarColumn( ColumnDescription = "区域",IsNullable =true)]
        public int Station_Area { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn( Length = 50, ColumnDescription = "备注", IsNullable = true)]
        public string Station_remark { get; set; }
 
 
        /// <summary>
        /// 站台所属设备
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "站台所属设备")]
        public string ChildPosiDeviceCode { get; set; }
 
 
        /// <summary>
        /// 过道地址母1
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "过道地址母1")]
        public string MotherCarDeviceCode { get; set; }
 
        /// <summary>
        /// 过道地址母2
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "过道地址母2")]
        public string MotherCardeputy { get; set; }
 
        /// <summary>
        /// 母地址(对标堆垛机取货口)
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "母地址")]
        public string Motherinlaw { get; set; }
 
        /// <summary>
        /// 子地址(对标过道站台)
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "子地址")]
        public string ZicheMotherinlaw { get; set; }
 
 
    }
}