using Model.InterFaceModel;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.IBLL.IBllTransServer
{
public interface INoticeServer
{
///
/// 下发入库单
///
///
///
public ErpModel CreateAsn(AsnInfo model);
///
/// 任务完成
///
///
///
///
public ErpModel FinishTask(string TaskNo, string Status);
///
/// 下发出库单
///
///
///
public SoResInfo ErpAddExportNotice(SoInfo model);
}
}