wanshenmean
2024-11-06 98cd144e4d58dbfcc09a2ffb0dbb6925519088b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using WIDESEA_Core;
using WIDESEA_DTO;
 
namespace WIDESEA_IStoragIntegrationServices;
 
public interface IAgingInOrOutInputService : IDependency
{
    /// <summary>
    /// 静置\陈化入库(整托盘)
    /// </summary>
    /// <param name="input">入库数据</param>
    /// <returns></returns>
    Task<WebResponseContent> GetOCVInputAsync(AgingInputDto input);
 
    /// <summary>
    /// 静置\陈化出库(整托盘)
    /// </summary>
    /// <param name="input">出库数据</param>
    /// <returns></returns>
    Task<WebResponseContent> GetOCVOutputAsync(AgingOutputDto input);
}