using WIDESEA_Core;
using WIDESEA_DTO;
namespace WIDESEA_IStoragIntegrationServices;
public interface IUnbindService : IDependency
{
    /// 
    /// 托盘单电芯解绑(
    /// 
    /// 
    /// 
    Task TrayCellUnbindAsync(TrayCellUnbindDto input);
    /// 
    /// 整盘电芯解绑
    /// 
    /// 电芯数据
    /// 
    Task TrayUnbindAsync(TrayUnbindDto input);
}