duheng
2024-07-23 14e8d0036e5f194d034c889ebbe458321ff59c10
1
2
3
4
5
6
7
8
9
10
11
12
using Yw.CAL;
 
namespace HStation.CAL
{
    /// <summary>
    /// 报警等级
    /// </summary>
    public interface IPumpPropContent : IBaseCAL<AddPumpPropContentDto, UpdatePumpPropContentDto, PumpPropContentDto>
    {
        Task<List<PumpPropContentDto>> GetByPumpPartID(long pumpPartId);
    }
}