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
29
30
| using System.Collections.Generic;
|
| namespace Bro.Common.Interface
| {
| /// <summary>
| /// 操作配置
| /// </summary>
| public interface IOperationConfig //: IOperationResult
| {
| /// <summary>
| /// 发生异常时的重新尝试次数
| /// </summary>
| int ReTryTimes { get; set; }
|
| /// <summary>
| /// 输入参数
| /// </summary>
| List<int> InputPara { get; set; }
|
| /// <summary>
| /// 当异常发生时的异常反馈值
| /// </summary>
| int ExceptionValue { get; set; }
|
| /// <summary>
| /// 指示该操作的监视配置来源
| /// </summary>
| string MonitorSetId { get; set; }
| }
| }
|
|