using OfficeOpenXml.FormulaParsing.Excel.Functions.Math; 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_Model.Models; namespace WIDESEA_IBasicService { public interface ILocationInfoService : IService { IRepository Repository { get; } /// /// 批量启用货位 /// /// 货位主键数组 /// WebResponseContent LocationEnableStatus(int[] keys); /// /// 批量禁用货位 /// /// 货位主键数组 /// WebResponseContent LocationDisableStatus(int[] keys); /// /// 单个启用货位 /// /// 货位主键 /// WebResponseContent LocationEnableStatus(int key); /// /// 单个禁用货位 /// /// 货位主键 /// WebResponseContent LocationDisableStatus(int key); /// /// 初始化货位 /// /// /// WebResponseContent InitializationLocation(InitializationLocationDTO initializationLocationDTO); /// /// 获取库位信息 /// /// 巷道号 /// 库位类型 /// Dt_LocationInfo? GetLocation(string roadway, int Locationtype); /// /// 获取巷道号 /// /// 仓库id /// 货位类型 /// string AccessingTunnel(int WarehouseId, int LocationType); /// /// 查找浅货位状态 /// /// Dt_LocationInfo? ShallowGetLocation(string roadway, int Locationtype, int row, int Layer, int Column); } }