1
huanghongfeng
2025-06-25 b1c2dd1869a51b8f0e4acb9ddeb148f796db147f
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
using WIDESEA_DTO;
 
namespace WIDESEA_IStorageBasicService;
 
public interface ILocationInfoService : IService<DtLocationInfo>
{
    /// <summary>
    /// 检查并生成移库任务或返回出库任务
    /// </summary>
    /// <param name="locationID">任务号</param>
    /// <returns>任务对象</returns>
    Task<Dt_Task> TransferCheckAsync(RequestTaskDto input);
    /// <summary>
    /// 检测入库任务是否需要移库
    /// </summary>
    /// <param name="input"></param>
    /// <returns></returns>
    Task<Dt_Task> InTransferCheckAsync(RequestTaskDto input);
 
    Task<WebResponseContent> initializeLocation(int locationID);
 
    WebResponseContent CreateLocation(int x, int y, int z, int locType, int areaId);
 
    WebResponseContent LocationEnable(SaveModel saveModel);
    WebResponseContent LocationStatus();
}