duheng
2024-08-21 6c88a90d2330a27c0052a22538f6ebd6200faae7
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);
    }
}