using Bro.Common.Helper; namespace Bro.Common.Interface { public interface IOperationResult //: IProcessID { ///// ///// 该配置对应的工序编号 ///// 考虑到多工序可能对应到同样的配置,工序编号不做固定赋值,在设备运作时随用随赋值 ///// //string ProcessId { get; set; } ///// ///// 工序名称 ///// //string ProcessName { get; set; } /// /// 结果输出 具体结果参照ConfigOutputAttribute特性指定的枚举 /// [ConfigOutputResource("")] int ResultOutput { get; set; } ///// ///// 指定该配置在获取输出时调用哪个方法 ///// //string OutputMethodName { get; set; } } public interface IProcessID { /// /// 该配置对应的工序编号 /// 考虑到多工序可能对应到同样的配置,工序编号不做固定赋值,在设备运作时随用随赋值 /// string ProcessId { get; set; } /// /// 工序名称 /// string ProcessName { get; set; } } }