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