2
schangxiang@126.com
2024-10-01 ffa9dc9c2d28c0b8d88b26d483ba9667e316db01
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
        };
    }
}