using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_IOutboundRepository; using WIDESEA_Model.Models; namespace WIDESEA_IOutboundService { public interface IOutLineViewService : IService { IOutLineViewRepository Repository { get; } /// /// 存入最新的出库纸卷信息 /// WebResponseContent SaveLineView(List outStockLockInfos); /// /// 获取线体原纸 /// /// WebResponseContent GetOutLineView(); } }