bklLiudl
2025-04-02 5eefcfa02eb6968f8f1f2f8da9d01f5e7d60aae5
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();
    }
}