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