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 IAssetsBluntheadMain : IBaseCAL<AddAssetsBluntheadMainInput, UpdateAssetsBluntheadMainInput, AssetsBluntheadMainDto>, 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<AssetsBluntheadMainDto>> GetBySeriesID(long ID);
| }
| }
|
|