duheng
2024-12-04 ca1ccd0dd9f2d6936368f07d14a2b29b309fd151
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 HStation.Dto;
using Yw.CAL;
 
namespace HStation.CAL
{
    /// <summary>
    /// 消火栓
    ///</summary>
    public interface IAssetsHydrantMain : IBaseCAL<AddAssetsHydrantMainInput, UpdateAssetsHydrantMainInput, AssetsHydrantMainDto>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
    {
        /// <summary>
        /// 判断TagName是否存在
        /// </summary>
        Task<bool> IsExistTagName(string TagName);
 
        /// <summary>
        /// 判断TagName是否存在 ExceptID
        /// </summary>
        Task<bool> IsExistTagNameExceptID(string TagName, long ExceptID);
 
        /// <summary>
        /// 通过 系列ID 获取
        /// </summary>
        public Task<List<AssetsHydrantMainDto>> GetBySeriesID(long ID);
    }
}