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); } }