/* *所有关于Dt_locationinfo类的业务代码接口应在此处编写 */ using WIDESEA.Core.BaseProvider; using WIDESEA.Entity.DomainModels; using WIDESEA.Core.Utilities; using System.Linq.Expressions; using System.Threading.Tasks; using WIDESEA.Core.EFDbContext; namespace WIDESEA.Services.IServices { public partial interface IDt_locationinfoService { /// /// 获取空货位(获取指定层的货位) /// /// public WebResponseContent GetEmptyLocation(WIDESEAContext dbcontext, string desLayer); /// /// 锁定或者取消锁定货位 /// /// /// public WebResponseContent DoLocationLockOperate(SaveModel saveModel); } }