1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| using Yw.CAL;
|
| namespace HStation.CAL
| {
| /// <summary>
| /// 报警等级
| /// </summary>
| public interface IAssetsPumpMain : IBaseCAL<AddAssetsPumpMainInput, UpdateAssetsPumpMainInput, AssetsPumpMainDto>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
| {
| /// <summary>
| ///
| /// </summary>
| Task<int> GetCount();
|
| Task<List<AssetsPumpMainDto>> GetByPumpSeriesID(long ID);
|
| Task<long> InsertEx(AddAssetsPumpMainInput input, AddAssetsPumpGroupAndMainMapInput map);
|
| Task<bool> DeleteMapByMainID(long ID);
|
| /// <summary>
| /// 通过 ID 获取所有产品
| /// </summary>
| Task<List<Dto.Assets.AssetsPumpPartMainDto>> GetPartByID(long ID);
| }
| }
|
|