PackingStoreBean_Partial.cs 725 字节
using OnlineStore.Common;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OnlineStore.DeviceLibrary
{
    partial class PackingStoreBean
    { 
      
        #region 出库

        public override bool StartOutStoreMove(InOutParam param)
        {
       
            return true;
        }
        protected override void OutStoreProcess()
        {
        }
        #endregion

        #region 入库 
        public override void  StartInStoreMove(InOutParam param)
        { 
        }
        protected override void InStoreProcess()
        { 
        }

        #endregion

     
         
    }
}