Shuxia Ning
2025-01-08 7b4b2eb7dd57c29a4b3a75de8234ff9afcbe18d4
BLL/HStation.BLL.Assets.Core/02-httpclient/18-Hydrant/AssetsHydrantCoefficient.cs
@@ -1,19 +1,25 @@
using Flurl.Http;
using HStation.Dto;
using Yw;
using Yw.CAL.HttpClient;
using Yw.Untity;
using Yw.CAL.HttpClient;
namespace HStation.CAL.HttpClient
{
    /// <summary>
    /// 消火栓系数
    ///</summary>
    public class AssetsHydrantCoefficient : BaseCAL<AddAssetsHydrantCoefficientInput, UpdateAssetsHydrantCoefficientInput, AssetsHydrantCoefficientDto>, IAssetsHydrantCoefficient
    public class AssetsHydrantCoefficient : BaseCAL<AddAssetsHydrantFactorInput, UpdateAssetsHydrantFactorInput, AssetsHydrantFactorDto>, IAssetsHydrantFactor
    {
        protected override string Prefix
        {
            get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/AssetsHydrantCoefficient"; }
        }
        public Task<bool> UpdateSortCode(long ID, int SortCode)
        {
            throw new NotImplementedException();
        }
        public Task<bool> UpdateSorter(List<UpdateSortCodeInput> Sorters)
        {
            throw new NotImplementedException();
        }
    }
}