using WIDESEA_Core; using WIDESEA_DTO; using WIDESEA_DTO.MOM; namespace WIDESEA_IStoragIntegrationServices; public interface ICellStateService : IDependency { /// /// 单电芯属性获取 /// /// 电芯数据 /// Task GetCellStateAsync(CellStateDto input); /// /// 整盘电芯属性获取 /// /// 电芯数据 /// Task GetTrayCellStatusAsync(TrayCellsStatusDto input); }