zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDeviceSparePartsService.cs

30 lines
803 B
C#
Raw Normal View History

2024-12-30 10:13:11 +08:00
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);
2024-12-30 15:25:40 +08:00
List<DeviceSparePartsDto> GetListNOPage(string query);
2024-12-30 10:13:11 +08:00
DeviceSpareParts GetInfo(int PartId);
DeviceSpareParts AddDeviceSpareParts(DeviceSpareParts parm);
int UpdateDeviceSpareParts(DeviceSpareParts parm);
2025-06-12 19:10:15 +08:00
List<DropdownOption> GetSupplierOptions();
List<DropdownOption> GetDevicePartsCategoriesOptions();
2024-12-30 10:13:11 +08:00
}
}