using Rhea.Common; using Tiger.Model.Entitys.MES; using Tiger.Model.Entitys.WMS.DTOS; namespace Tiger.IBusiness { /// /// T100对接WMS接口 /// public interface IProductInputBusiness { /// /// 存储MES推送过来的数据 /// /// string GetProductInputInfo(ProductInputDTO input); /// /// 存储T100推送过来的数据 /// /// int GetProductInputInfoFromT100(ProduceInputDataDTO input); /// /// 成品入库对接T100过账接口 /// /// /// string GetProductInputPostingToT100(ProductInputDTO input); /// /// /// /// /// Task> GetProductInputResultInfoAsync(ProductInputResultDTO input); /// /// 状态复原 /// /// /// int ProductInputStatusRestoredAsync(ProductInputResultDTO input); /// /// SMT退料对接MES接口 /// /// /// int SMTReturnFormMES(SMTReturnDTO input); } }