using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_DTO.Basic; using WIDESEAWCS_Common; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_IBasicInfoRepository; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_IBasicInfoService { public interface ILocationInfoService : IService { ILocationInfoRepository Repository { get; } /// /// 批量启用货位 /// /// 货位主键数组 /// WebResponseContent LocationEnableStatus(int[] keys); /// /// 批量禁用货位 /// /// 货位主键数组 /// WebResponseContent LocationDisableStatus(int[] keys); /// /// 单个启用货位 /// /// 货位主键 /// WebResponseContent LocationEnableStatus(int key); /// /// 单个禁用货位 /// /// 货位主键 /// WebResponseContent LocationDisableStatus(int key); /// /// 货位分配逻辑 /// /// 巷道号 /// 托盘类型 /// Dt_LocationInfo? AssignLocation(); /// /// 初始化货位 /// /// /// WebResponseContent InitializationLocation(InitializationLocationDTO initializationLocationDTO); } }