25 lines
694 B
C#
25 lines
694 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 IDevicePartsTransactionsService : IBaseService<DevicePartsTransactions>
|
|
{
|
|
PagedInfo<DevicePartsTransactionsDto> GetList(DevicePartsTransactionsQueryDto parm);
|
|
|
|
DevicePartsTransactions GetInfo(int TransactionId);
|
|
|
|
DevicePartsTransactions AddDevicePartsTransactions(DevicePartsTransactions parm);
|
|
|
|
int UpdateDevicePartsTransactions(DevicePartsTransactions parm);
|
|
|
|
}
|
|
}
|