333
schangxiang@126.com
2024-11-26 f23e0223221ec2b96543761bc0ab743d9e0a6294
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using iWareCommon.Common.EnumType;
using System.Collections.Generic;
 
namespace iWareCommon
{
    /// <summary>
    /// 堆垛机缓存实体类
    /// </summary>
    public class Srm_CacheEntity
    {
        public static SrmEntity Srm1 =new SrmEntity("Srm1",(int)EDeviceId.一号堆垛机);
        public static SrmEntity Srm2 = new SrmEntity("Srm2", (int)EDeviceId.二号堆垛机);
 
        public static List<SrmEntity> Srms = new List<SrmEntity>
        {
            Srm1,Srm2
        };
    }
}