using System; using DOAN.Model; using DOAN.Model.Dto; using DOAN.Model.MES.dev.Dto; using DOAN.Model.MES.dev; using System.Collections.Generic; namespace DOAN.Service.MES.dev.IService { /// /// 备品备件库位service接口 /// public interface IDevicePartsStorageLocationsService : IBaseService { PagedInfo GetList(DevicePartsStorageLocationsQueryDto parm); string[] QueryDevicePartsStorageLocationsLocationCode(string query); DevicePartsStorageLocations GetInfo(int LocationId); DevicePartsStorageLocations AddDevicePartsStorageLocations(DevicePartsStorageLocations parm); int UpdateDevicePartsStorageLocations(DevicePartsStorageLocations parm); } }