kazelee
2025-05-09 62e3ff7506396fcb7f7737900806e838c2466aa3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DSZSH.Consts {
    /// <summary>
    /// 【框架】位置锁名称 字符串常量
    /// </summary>
    public class LockStateName {
        public const string 无 = "无";
        public const string 入库锁 = "入库锁";
        public const string 出库锁 = "出库锁";
        public const string 其他锁 = "其他锁";
    }
}