hwh
2024-06-13 a1d526f1de490246a7b58460f5ca4f1fefbde45a
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
27
using System;
using System.Collections.Generic;
using System.Text;
using Model.ModelDto.BllCheckDto;
 
namespace WMS.IBLL.IBllCheckServer
{
    public interface IStockCheckLogServer
    {
        /// <summary>
        /// 获取盘点记录
        /// </summary>
        /// <param name="crNo">单据号</param>
        /// <param name="status">状态</param>
        /// <param name="palletNo">托盘号</param>
        /// <param name="boxNo">箱码</param>
        /// <param name="skuNo">物料编码</param>
        /// <param name="skuName">物料名称</param>
        /// <param name="lotNo">批次号</param>
        /// <param name="page"></param>
        /// <param name="limit"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        List<StockCheckLogDto> GetStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName,
            string lotNo, int page, int limit, out int count);
    }
}