namespace WIDESEA_IStorageBasicServices; public interface IDt_LocationService : IService { abstract Task TransferCheckAsync(int taskNum); WebResponseContent LocationEnable(SaveModel saveModel); /// /// 创建原始货位数据 (随便写了一个双深货位的) /// /// 行 /// 列 /// 层 /// 货位类型(1、单深,2、双深) /// WebResponseContent CreateLocation(int x, int y, int z, int locType); }