27 lines
732 B
C#
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);
|
|
|
|
}
|
|
}
|