ke_junjie
2025-06-04 101c57ec4c28bc3c36e49c50a926e9e7c0dd0247
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
using EnumType;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareSda_QQJF.SRM.SrmModel
{
    /// <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 SrmEntity Srm3 = new SrmEntity("Srm3", (int)EDeviceId.三号堆垛机);
        public static SrmEntity Srm4 = new SrmEntity("Srm4", (int)EDeviceId.四号堆垛机);
        public static SrmEntity Srm5 = new SrmEntity("Srm5", (int)EDeviceId.五号堆垛机);
        public static SrmEntity Srm6 = new SrmEntity("Srm6", (int)EDeviceId.六号堆垛机);
        public static SrmEntity Srm7 = new SrmEntity("Srm7", (int)EDeviceId.七号堆垛机);
        public static SrmEntity Srm8 = new SrmEntity("Srm8", (int)EDeviceId.八号堆垛机);
        public static SrmEntity Srm9 = new SrmEntity("Srm9", (int)EDeviceId.九号堆垛机);
     
 
        public static List<SrmEntity> Srms = new List<SrmEntity>
        {
            Srm1,Srm2,Srm3,Srm4,Srm5,Srm6,Srm7,Srm8,Srm9
        };
    }
}