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 IDeviceSparePartsService : IBaseService
{
PagedInfo GetList(DeviceSparePartsQueryDto parm);
List GetListNOPage(string query);
DeviceSpareParts GetInfo(int PartId);
DeviceSpareParts AddDeviceSpareParts(DeviceSpareParts parm);
int UpdateDeviceSpareParts(DeviceSpareParts parm);
List GetSupplierOptions();
List GetDevicePartsCategoriesOptions();
}
}