namespace HStation.CAL
{
///
///
///
public interface IXhsPumpMainPhartMapping : IBaseCAL, IUpdateSorter
{
///
/// 通过 MainID 获取
///
Task> GetByPumpMainID(long PumpMainID);
///
/// 通过 PumpMainIds 获取
///
Task> GetByPumpMainIds(List PumpMainIds);
///
/// 获取最大排序码
///
///
Task GetMaxSortCode(long PumpMainID);
///
/// 更新 OtherName
///
Task UpdateOtherName(long ID, string OtherName);
///
/// 更新 Importance
///
Task UpdateImportance(long ID, int Importance);
///
/// 通过 MainID 删除
///
Task DeleteByPumpMainID(long PumpMainID);
}
}