111
cjs
4 天以前 99004292e20a9e1efa4e3b11b8c319bfd796912c
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
using HH.WCS.Mobox3.NFLZ.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.NFLZ
{
    [SugarTable("TN_SegmentTable")]
    public class SegmentTable : BaseModel
    {
        /// <summary>
        /// 库区编码
        /// </summary>
        public string S_AREA_CODE { get; set; }
        /// <summary>
        /// 排号
        /// </summary>
        public string N_ROW { get; set; }
        /// <summary>
        /// 线段起点列
        /// </summary>
        public int S_START_COL { get; set; }
        /// <summary>
        /// 线段终点列
        /// </summary>
        public int S_END_COL { get; set; }
        /// <summary>
        /// 一层站点
        /// </summary>
        public string S_First_Bit { get; set; }
        /// <summary>
        /// 二层站点
        /// </summary>
        public string S_Second_Bit { get; set; }
        /// <summary>
        /// 托盘类型
        /// </summary>
        public string board { get; set; }
    }
}