using Tnb.ProductionMgr.Entities.Dto;
namespace Tnb.ProductionMgr.Interfaces
{
///
/// 生产领料服务
///
public interface IPrdOutstockService
{
///
/// 一般出库申请
///
///
public Task GeneralOutstock(GeneralOutstockInput input);
///
/// 物料出库申请
///
///
public Task MaterialOutstock(MaterialOutstockInput input);
}
}