using WIDESEA_DTO; namespace WIDESEA_IStorageBasicService; public interface ILocationInfoService : IService { /// /// 检查并生成移库任务或返回出库任务 /// /// 任务号 /// 任务对象 Task TransferCheckAsync(RequestTaskDto input); /// /// 检测入库任务是否需要移库 /// /// /// Task InTransferCheckAsync(RequestTaskDto input); Task initializeLocation(int locationID); WebResponseContent CreateLocation(int x, int y, int z, int locType, int areaId); WebResponseContent LocationEnable(SaveModel saveModel); WebResponseContent LocationStatus(); }