| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.IVRControl;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 转人工节点
- /// </summary>
- [IVRAttribute("CELL_TURNAGENT", Model.IVRSerializerType.节点,1)]
- public class IVRTurnagent : IVRControlBase
- {
- public IVRTurnagent(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRTurnagent(this);
- BandData = new List<IVRDefaultVar>();
- }
- /// <summary>
- /// :待转移的座席分机号变量。
- /// </summary>
- [IVRAttribute("Exten", Model.IVRSerializerType.元素,2)]
- public string Exten
- { get; set; }
- /// <summary>
- ///
- /// </summary>
- [IVRAttribute("FailPos", Model.IVRSerializerType.元素, 3, IsPosPoint = true)]
- public IVRControlBase FailPos
- { get; set; }
- /// <summary>
- /// :成功跳转的节点编号。
- /// </summary>
- [IVRAttribute("SuccessPos", Model.IVRSerializerType.元素, 4, IsPosPoint = true)]
- public IVRControlBase SuccessPos
- { get; set; }
- /// <summary>
- /// 挂机跳转
- /// </summary>
- [IVRAttribute("HangupPos", Model.IVRSerializerType.元素, 5, IsPosPoint = true)]
- public IVRControlBase HangupPos
- { get; set; }
- /// <summary>
- /// 罗列所有要传递给座席的变量列表。
- /// </summary>
- [IVRAttribute("BandData", Model.IVRSerializerType.节点,6)]
- public List<IVRDefaultVar> BandData
- { get; set; }
- }
-
- }
|