1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| namespace HStation.CAL
| {
| /// <summary>
| ///
| /// </summary>
| public interface IXhsPumpPhartMappingExtensions : IBaseCAL<AddXhsPumpPhartMappingExtensionsInput, UpdateXhsPumpPhartMappingExtensionsInput, XhsPumpPhartMappingExtensionsDto>
| {
|
| /// <summary>
| /// 通过 PumpID 获取
| /// </summary>
| Task<List<XhsPumpPhartMappingExtensionsDto>> GetByPumpID(long PumpID);
|
| /// <summary>
| /// 通过 DiagramID 删除
| /// </summary>
| Task<bool> DeleteByDiagramID(long DiagramID);
|
|
| }
| }
|
|