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
{
///
/// 库存信息表service接口
///
public interface IDevicePartsInventoryService : IBaseService
{
PagedInfo GetList(DevicePartsInventoryQueryDto parm);
DevicePartsInventory GetInfo(int InventoryId);
DevicePartsInventory AddDevicePartsInventory(DevicePartsInventory parm);
int UpdateDevicePartsInventory(DevicePartsInventory parm);
bool EntryInventory(DevicePartsInventoryDto parm,string admin,int SupplierId);
bool OutInventory(DevicePartsInventoryDto parm,string admin);
bool CheckInventory(DevicePartsInventoryDto parm,string admin);
}
}