using WIDESEA_Core;
using WIDESEA_DTO;
namespace WIDESEA_IStoragIntegrationServices;
public interface IAgingInOrOutInputService : IDependency
{
    /// 
    /// 静置\陈化入库(整托盘)
    /// 
    /// 入库数据
    /// 
    Task GetOCVInputAsync(AgingInputDto input);
    /// 
    /// 静置\陈化出库(整托盘)
    /// 
    /// 出库数据
    /// 
    Task GetOCVOutputAsync(AgingOutputDto input);
}