wangxinhui
2025-11-18 b513ce3a4527e998da66c6f179a279472c7262a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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();
    }
}