lixiaojun
2025-02-19 aaac84e4ed86d089c01c5b180e4249db73cc78d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Yw.CAL;
 
namespace HStation.CAL
{
    /// <summary>
    /// 
    /// </summary>
    public interface IAssetsCompressorSeries : IBaseCAL<AddAssetsCompressorSeriesInput, UpdateAssetsCompressorSeriesInput, AssetsCompressorSeriesDto>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateTreeSorter
    {
 
        /// <summary>
        /// 
        /// </summary>
        Task<bool> IsExistTagName(string TagName);
 
        /// <summary>
        /// 
        /// </summary>
        Task<bool> IsExistTagNameExceptID(string TagName, long ExceptID);
    }
}