using Estsh.Core.Base; using Estsh.Core.Model.EnumUtil; using Estsh.Core.Models; using Estsh.Core.Repositories; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Estsh.Core.Wms.IRepositories { public interface IJisShippingRepository : IBaseRepository { /// /// 查询成品发运接口 /// /// public List GetFinishedShippedInfo(); /// /// 处理成品发运接口 /// /// /// public bool InsertFinishedShippedInfo(List mesWmsJisShippings); /// /// 获取待Jis发运的数据 /// /// List GetJisShippingInfo(); /// /// 更新待Jis发运的数据 /// /// /// /// int UpdateJisShippingInfo(MesJisShipping jisShip, MesEnumUtil.JisShipStatus status, string msg = ""); /// /// 处理JIS发运 /// /// /// /// /// bool DoJisShip(List jisShip, List cartonInfo); } }