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<Dt_OutLineView>
|
{
|
IOutLineViewRepository Repository { get; }
|
/// <summary>
|
/// 存入最新的出库纸卷信息
|
/// </summary>
|
WebResponseContent SaveLineView(List<Dt_OutStockLockInfo> outStockLockInfos);
|
/// <summary>
|
/// 获取线体原纸
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent GetOutLineView();
|
}
|
}
|