| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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_TIMER", Model.IVRSerializerType.节点, 2)]
- public class IVRTimer : IVRControlBase
- {
- public IVRTimer(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRTimer(this);
- }
- /// <summary>
- /// :定时间隔,单位为秒。
- /// </summary>
- [IVRAttribute("TimerInterval", Model.IVRSerializerType.元素, 2)]
- public int TimerInterval
- { get; set; }
- /// <summary>
- /// :生效时间段开始时间,格式为HH:MM。
- /// </summary>
- [IVRAttribute("BeginTime", Model.IVRSerializerType.元素, 3)]
- public string BeginTime
- { get; set; }
- /// <summary>
- /// :生效时间段结束时间,格式为HH:MM。
- /// </summary>
- [IVRAttribute("EndTime", Model.IVRSerializerType.元素, 4)]
- public string EndTime
- { get; set; }
- /// <summary>
- /// :定时器到时跳转的节点编号。
- /// </summary>
- [IVRAttribute("Next", Model.IVRSerializerType.元素,5, IsPosPoint = true)]
- public IVRControlBase Next
- { get; set; }
- }
- }
|