ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
32
33
34
35
using iWareCommon.Common.Globle;
using iWareCommon.Utils;
using iWareModel;
using iWareModel.EnumType.XiGangPublicCommon;
using iWareSql.DataAccess;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using XiGang.Core.Model;
 
 
namespace iWareCC.Common.Helper
{
    /// <summary>
    /// 增补创建的扩展帮助类 【EditBy shaocx,2022-02-05】
    /// </summary>
    public class MyExtendHelper
    {
        /// <summary>
        /// 判断堆垛机是否空闲
        /// </summary>
        /// <param name="devic"></param>
        private static bool IsKongXianForSrm(EDevice devic)
        {
            if (FormCC.srmViewDict[(int)devic].R_State == (int)ESrmState.空闲)
            {
                return true;
            }
            return false;
        }
    }
}