30 lines
803 B
C#
30 lines
803 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 备品备件基本信息表service接口
|
|
/// </summary>
|
|
public interface IDeviceSparePartsService : IBaseService<DeviceSpareParts>
|
|
{
|
|
PagedInfo<DeviceSparePartsDto> GetList(DeviceSparePartsQueryDto parm);
|
|
|
|
List<DeviceSparePartsDto> GetListNOPage(string query);
|
|
|
|
DeviceSpareParts GetInfo(int PartId);
|
|
|
|
DeviceSpareParts AddDeviceSpareParts(DeviceSpareParts parm);
|
|
|
|
int UpdateDeviceSpareParts(DeviceSpareParts parm);
|
|
|
|
List<DropdownOption> GetSupplierOptions();
|
|
|
|
List<DropdownOption> GetDevicePartsCategoriesOptions();
|
|
}
|
|
}
|