using Yw.CAL;
namespace HStation.CAL
{
///
/// 报警等级
///
public interface IAssetsExchangerPartMain : IBaseCAL, IUpdateSorter
{
///
/// 通过型号ID 获取
///
public Task> GetByExchangerMainID(long ID);
public Task InsertEx(AddAssetsExchangerPartMainInput part, List propcontents, AddAssetsExchangerMainAndPartMappingInput partmap);
public Task UpdateEx(UpdateAssetsExchangerPartMainInput Exchangerpart, List updateAssetsExchangerPropContentDtos);
public Task DeleteEx(long ID);
}
}