| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | using WIDESEA_Core; |  | using WIDESEA_DTO; |  | using WIDESEA_DTO.MOM; |  |   |  | namespace WIDESEA_IStoragIntegrationServices; |  |   |  | public interface ICellStateService : IDependency |  | { |  |     /// <summary> |  |     /// 单电芯属性获取 |  |     /// </summary> |  |     /// <param name="input">电芯数据</param> |  |     /// <returns></returns> |  |     Task<dynamic> GetCellStateAsync(CellStateDto input); |  |   |  |     /// <summary> |  |     /// 整盘电芯属性获取 |  |     /// </summary> |  |     /// <param name="input">电芯数据</param> |  |     /// <returns></returns> |  |     Task<WebResponseContent> GetTrayCellStatusAsync(TrayCellsStatusDto input); |  | } | 
 |