jinxin
2025-06-05 8ad8eea3e7d876fd996130f40a17ed47d794236a
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.WeiLi.models
{
    [SugarTable("TN_State_LiKu")]
    public class PeiZhi : BaseModel
    {
        /// <summary>
        /// 接驳位货位编码
        /// </summary>
        public string BitCode { get; set; }
        /// <summary>
        /// 下游设备使用点位 注:agv站点依旧维护站点表 plc点位维护配置文件
        /// </summary>
        public string PlcLocation { get; set; }
        ///// <summary>
        ///// 入库1 出库2
        ///// </summary>
        //public int OutInType { get; set; }
        ///// <summary>
        ///// 对应外部库区
        ///// </summary>
        //public string AreaCode { get; set; }
        ///// <summary>
        ///// 立库库区
        ///// </summary>
        //public string LiKuAreaCode { get; set; }
        ///// <summary>
        ///// 接驳位所在库区
        ///// </summary>
        //public string Area { get; set; }
        //public string roadway { get; set; }
        ///// <summary>
        ///// 开关 1/0
        ///// </summary>
        //public int Enable { get; set; }
        ///// <summary>
        ///// 输送线区域
        ///// </summary>
        //public string DVC_AREA { get; set; }
    }
}