using Yw.CAL.HttpClient;
namespace PBS.CAL.WE.HttpClient
{
///
/// 用水器具映射
///
public class UtensilMapping : BaseCAL_Sorter, IUtensilMapping
{
protected override string Prefix
{
get { return $"{ConfigHelper.HttpUrl}/UtensilMapping"; }
}
public Task DeleteAllByItemID(long ItemID)
{
throw new NotImplementedException();
}
public Task> GetByItemID(long ItemID)
{
throw new NotImplementedException();
}
}
}