using DOAN.Model.PBL.Dto; using DOAN.Model.PBL; namespace DOAN.Service.PBL.IService { /// /// 料架表service接口 /// public interface IStoragelocationService : IBaseService { PagedInfo GetList(StoragelocationQueryDto parm); Storagelocation GetInfo(int Id); Storagelocation AddStoragelocation(Storagelocation parm); int UpdateStoragelocation(Storagelocation parm); } }