DUOStoreBean_Partial.cs 624 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OnlineStore.DeviceLibrary
{
  partial  class DUOStoreBean
    {
        #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
    }
}