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

31 lines
898 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 IDevicePartsInventoryService : IBaseService<DevicePartsInventory>
{
PagedInfo<DevicePartsInventoryDto2> 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);
}
}