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 IAssetsHydrantSeries : IBaseCAL<AddAssetsHydrantSeriesInput, UpdateAssetsHydrantSeriesInput, AssetsHydrantSeriesDto>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateTreeSorter
    {
        /// <summary>
        /// 更新树排序码
        /// </summary>
        Task<bool> UpdateTreeSortCode(long ID, List<long> ParentIds, int SortCode);
 
        /// <summary>
        /// 判断TagName是否存在
        /// </summary>
        Task<bool> IsExistTagName(string TagName);
 
        /// <summary>
        /// 判断TagName是否存在 ExceptID
        /// </summary>
        Task<bool> IsExistTagNameExceptID(string TagName, long ExceptID);
    }
}