using iWareCommon.Common.EnumType;
using System.Collections.Generic;
namespace iWareCommon
{
///
/// 堆垛机缓存实体类
///
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 Srms = new List
{
Srm1,Srm2
};
}
}