11
pulg
2025-06-05 28bea7128b8c24a6a664e880f1425e1fa24b9b5f
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
using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.SJML.Entitys
{
    [ST("逻辑分区表")]
    public class TN_LogicEntitys : BaseModel
    {
        /// <summary>
        /// 状态
        /// </summary>
        public int S_TYPE { get; set; }
 
        /// <summary>
        /// 优先级
        /// </summary>
        public int S_PRIORITY { get; set; }
 
        /// <summary>
        /// 站点编码
        /// </summary>
        public string S_LOCATION_CODE { get; set; }
 
        /// <summary>
        /// 仓库
        /// </summary>
        public string S_STOCK_AREA { get; set; }
 
        /// <summary>
        /// 库区编码
        /// </summary>
        public string S_AREA_CODE { get; set; }
 
        /// <summary>
        /// 是否启用
        /// Y: 启用
        /// N: 弃用
        /// </summary>
        public string S_START_USING { get; set; }
 
 
        /// <summary>
        /// 分区编码
        /// </summary>
        public string S_ZONAL_CODE { get; set; }
    }
}