bklLiudl
2024-03-14 7e514494e595531a0517d6266823bc7f6d673831
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
28
29
30
31
32
33
34
using Model.ModelVm.DailyInventory;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.IBLL.IIndexEcharServer
{
    public interface IDailyInventoryServer
    {
        /// <summary>
        /// 当天入库量
        /// </summary>
        /// <returns></returns>
        List<DailyInventoryVM> DailyInventory();
 
        /// <summary>
        /// 当天单据量
        /// </summary>
        /// <returns></returns>
        List<DailyReceiptsVm> DailyReceipts();
 
        /// <summary>
        /// 获取储位占用量
        /// </summary>
        /// <returns></returns>
        List<LocatInventoryVm> LocatInventory();
 
        /// <summary>
        /// 获取储位占用量
        /// </summary>
        /// <returns></returns>
        List<LocatInventoryVm> LocatInventoryA();
    }
}