InputEquip_InStore.cs 1.1 KB
using Asa; 
using OnlineStore.Common;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace OnlineStore.DeviceLibrary
{
    partial class InputEquip
    {
        protected override bool CheckWaitResult(DeviceMoveInfo moveInfo, WaitResultInfo wait)
        {
             
            return false;
        }


        #region 取放料
        public override bool StartInstore(InOutParam param)
        { 
            return false;
        }
       
        protected override void InstoreProcess()
        {
            if (MoveInfo.IsInWait)
            {
                CheckWait(MoveInfo);
            }
            if (MoveInfo.IsInWait)
            {
                return;
            }

           
        }

        public override bool StartOutstore(InOutParam param)
        {
            return false;
        }

        protected override void OutstoreProcess()
        {
        }
        #endregion




    }
}