using Yw.CAL.HttpClient; namespace HStation.CAL.HttpClient { /// /// 消火栓系数 /// public class AssetsHydrantCoefficient : BaseCAL, IAssetsHydrantFactor { protected override string Prefix { get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/AssetsHydrantCoefficient"; } } public Task UpdateSortCode(long ID, int SortCode) { throw new NotImplementedException(); } public Task UpdateSorter(List Sorters) { throw new NotImplementedException(); } } }