zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDevicePartsInventoryService.cs

31 lines
898 B
C#
Raw Normal View History

2024-12-30 11:31:40 +08:00
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>
{
2024-12-30 13:54:18 +08:00
PagedInfo<DevicePartsInventoryDto2> GetList(DevicePartsInventoryQueryDto parm);
2024-12-30 11:31:40 +08:00
DevicePartsInventory GetInfo(int InventoryId);
DevicePartsInventory AddDevicePartsInventory(DevicePartsInventory parm);
int UpdateDevicePartsInventory(DevicePartsInventory parm);
2024-12-30 16:20:01 +08:00
bool EntryInventory(DevicePartsInventoryDto parm,string admin,int SupplierId);
2024-12-30 15:25:40 +08:00
2024-12-30 16:20:01 +08:00
bool OutInventory(DevicePartsInventoryDto parm,string admin);
2024-12-30 15:25:40 +08:00
2024-12-30 16:20:01 +08:00
bool CheckInventory(DevicePartsInventoryDto parm,string admin);
2024-12-30 15:25:40 +08:00
2024-12-30 11:31:40 +08:00
}
}