111
zhanghonglin
2026-01-05 f797a0e6d079aa25aee23d7aa4064d144d1efa74
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
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Common.CommonEnum;
using WIDESEA_Common.LocationEnum;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_DTO.Basic;
using WIDESEA_DTO.Location;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.Stock;
 
namespace WIDESEA_IBasicService
{
    public interface ILocationInfoService : IService<Dt_LocationInfo>
    {
        IRepository<Dt_LocationInfo> Repository { get; }
 
        /// <summary>
        /// 初始化货位
        /// </summary>
        /// <param name="initializationLocationDTO"></param>
        /// <returns></returns>
        WebResponseContent InitializationLocation(InitializationLocationDTO initializationLocationDTO);
 
        //入库分配货位
        Dt_LocationInfo AllotLocationInfo(int k);
 
        //出库分配物料
        Dt_LocationInfo AllotStock(int k);
 
        //根据多条物料查询对应的货位并修改为锁定
        List<Dt_LocationInfo> StockLockLocation(List<Dt_StockInfo> StockInfo);
 
        //前端页面平面图显示
        List<Dt_LocationInfo> getLocation();
 
        //修改库位类型
        WebResponseContent UpdateLocationType(int k);
 
        //大屏货位数量
        Location LocationNum();
    }
}