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 IDevicePartsSuppliersService : IBaseService { PagedInfo GetList(DevicePartsSuppliersQueryDto parm); List GetListSupplier(string query); DevicePartsSuppliers GetInfo(int SupplierId); DevicePartsSuppliers AddDevicePartsSuppliers(DevicePartsSuppliers parm); int UpdateDevicePartsSuppliers(DevicePartsSuppliers parm); } }