| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.Propretity;
- using HySoft.IVRFlowEditor.Model;
- using System.Windows.Forms;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 外呼节点
- /// </summary>
- [IVRAttribute("CELL_CALL", Model.IVRSerializerType.节点, 1)]
- public class IVROutbound : IVRControlBase
- {
- public IVROutbound(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVROutbound(this);
- CtlProperty.Cursor = System.Windows.Forms.Cursors.SizeAll;
- CtlProperty.Tag = this;
- }
- /// <summary>
- /// 表示被叫号码字段类型;1为具体号码,2为变量名(下同)。
- /// </summary>
- [IVRAttribute("CalleeNumType", Model.IVRSerializerType.元素, 2)]
- public NumberType CalleeNumType
- { get; set; }
- /// <summary>
- /// 被叫号码字段,值可以是号码或是一个变量名(下同)。
- /// </summary>
- [IVRAttribute("CalleeNum", Model.IVRSerializerType.元素, 3)]
- public string CalleeNum
- { get; set; }
- /// <summary>
- /// :表示主叫号码字段类型;1为具体号码,2为变量名。
- /// </summary>
- [IVRAttribute("CallerNumType", Model.IVRSerializerType.元素, 4)]
- public NumberType CallerNumType
- { get; set; }
- /// <summary>
- /// :主叫号码,值可以是号码或是一个变量名。
- /// </summary>
- [IVRAttribute("CallerNum", Model.IVRSerializerType.元素, 5)]
- public string CallerNum
- { get; set; }
- /// <summary>
- /// 超时事件
- /// </summary>
- [IVRAttribute("Timeout", Model.IVRSerializerType.元素, 6)]
- public int Timeout
- { get; set; }
- [IVRAttribute("SuccessPos", Model.IVRSerializerType.元素, 7, IsPosPoint = true)]
- public IVRControlBase SuccessPos
- { get; set; }
- [IVRAttribute("FailPos", Model.IVRSerializerType.元素, 8, IsPosPoint = true)]
- public IVRControlBase FailPos
- { get; set; }
- }
- }
|