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 IUnbindService : IDependency 
 |  { 
 |      /// <summary> 
 |      /// 托盘单电芯解绑( 
 |      /// </summary> 
 |      /// <param name="name"></param> 
 |      /// <returns></returns> 
 |      Task<dynamic> TrayCellUnbindAsync(TrayCellUnbindDto input); 
 |    
 |      /// <summary> 
 |      /// 整盘电芯解绑 
 |      /// </summary> 
 |      /// <param name="input">电芯数据</param> 
 |      /// <returns></returns> 
 |      Task<dynamic> TrayUnbindAsync(TrayUnbindDto input); 
 |  } 
 |  
  |