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"; }
| }
| }
| }
|
|