kazelee
2025-05-15 1af49bdb3cdaa44a7e44ebdc843fb8180596365f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DSZSH.Consts {
    public class AreaName {
        public const string 包装区 = "包装区";
        public const string 操作区 = "操作区";
        
        public const string 空托存放区 = "空托存放区";
 
        public const string 货架区 = "货架区";
        public const string 空箱存放区 = "空箱存放区";
        public const string 满托存放区 = "满托存放区";
        public const string 满箱存放区 = "满箱存放区";
 
        public const string 人工_AGV接驳区 = "人工-AGV接驳区";
        public const string 空托盘接驳区 = "空托盘接驳区";
        public const string 空箱接驳区 = "空箱接驳区";
    }
}