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; }
|
|
/// <summary>
|
/// 调用该操作配置的设备Id
|
/// </summary>
|
string DeviceId { get; set; }
|
}
|
}
|