Shuxia Ning
2025-02-26 04355e18d030ab55832639a58ccb87fbbfe2ef80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Yw.CAL;
 
namespace PBS.CAL
{
    /// <summary>
    /// 设施
    ///</summary> 
    public interface IFacility : IBaseCAL<AddFacilityInput, UpdateFacilityInput, FacilityDto>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateUseStatus, IUpdateSorter
    {
 
        /// <summary>
        /// 判断TagName是否存在
        /// </summary>
        Task<bool> IsExistTagName(string TagName);
 
        /// <summary>
        /// 判断TagName是否存在 ExceptID
        /// </summary>
        Task<bool> IsExistTagNameExceptID(string TagName, long ExceptID);
 
    }
}