duheng
2024-10-11 92d898b3744956c6219b9a73418c1ce075f51d3a
1
2
3
4
5
6
7
8
9
10
11
12
using Yw.CAL;
 
namespace HStation.CAL
{
    /// <summary>
    /// 报警等级
    /// </summary>
    public interface IPipeLineRoughnessCoefficient : IBaseCAL<AddPipeRoughnessCoefficientInput, UpdatePipeRoughnessCoefficientInput, PipeRoughnessCoefficientDto>
    {
        public Task<List<PipeRoughnessCoefficientDto>> GetByPipeID(long PipeID);
    }
}