duheng
2024-09-20 7d17fabc46e87ea0f0896f760034f4d16a4dfed0
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 IXhsValveMainPhartMappingExtensions : IBaseCAL<AddXhsValveMainPhartMappingExtensionsInput, UpdateXhsValveMainPhartMappingExtensionsInput, XhsValveMainPhartMappingExtensionsDto>
    {
 
        /// <summary>
        /// 通过 ValveMainID 获取
        /// </summary>
        Task<List<XhsValveMainPhartMappingExtensionsDto>> GetByValveMainID(long ValveMainID);
 
        /// <summary>
        /// 通过 DiagramID 删除
        /// </summary> 
        Task<bool> DeleteByDiagramID(long DiagramID);
 
 
    }
}