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