zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDevicePartsSuppliersService.cs
2024-12-30 16:20:01 +08:00

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