duheng
2024-12-27 1c3e5bc50d3045d51cb9a9f747d53442b82d9e2c
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
27
28
using Yw.CAL; 
 
namespace PBS.CAL.WE
{
    /// <summary>
    /// 用水当量目录
    ///</summary> 
    public interface ICatalogue :IBaseCAL<AddCatalogueInput,UpdateCatalogueInput,CatalogueDto> , IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateUseStatus, 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);
 
    }
}