1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
 
    /// <summary>
    /// 修改设备型号
    /// </summary>
    /// <param name="input"></param>
    /// <returns></returns>
    Task<WebResponseContent> Change(EqptRunDto input);
}