duheng
2025-04-07 4265cdf374c215edf5284cb7fc751060266ec473
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Flurl.Http;
using Yw;
using Yw.CAL.HttpClient;
using Yw.Untity;
 
namespace PBS.CAL.HttpClient
{
    /// <summary>
    /// 供水设备(含评价)
    ///</summary>
    public class WaterEquipment : BaseCAL_Sorter<AddWaterEquipmentInput, UpdateWaterEquipmentInput, WaterEquipmentDto>, IWaterEquipment
    {
        protected override string Prefix
        {
            get { return $"{ConfigHelper.HttpUrl}/WaterEquipment"; }
        }
    }
}