using WcsMain.DataBase.TableEntity;
namespace WcsMain.ExtendMethod;
///
/// 堆垛机操作扩展方法
///
public static class AppStackerExtendMethod
{
///
/// 查找运行使用的 PLC
///
///
///
public static List Open(this List? value)
{
if(value == default) return [];
return value.FindAll(f => f.StackerStatus == 1);
}
}