ivr流程编辑器

IVRRecordSet.cs 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using HySoft.IVRFlowEditor.IVRControl;
  6. using HySoft.IVRFlowEditor.Model;
  7. namespace HySoft.IVRFlowEditor.IVRControlUtility
  8. {
  9. /// <summary>
  10. /// 数据集映射节点
  11. /// </summary>
  12. [IVRAttribute("CELL_RECORDSET", Model.IVRSerializerType.节点,1)]
  13. public class IVRRecordSet : IVRControlBase
  14. {
  15. public IVRRecordSet(string name)
  16. {
  17. this.Name = name;
  18. CtlProperty = new CtlIVRRecordSet(this);
  19. Map = new List<IVRDefaultVar>();
  20. }
  21. /// <summary>
  22. /// :待映射的变量小于记录集个数时跳转的节点编号。
  23. /// </summary>
  24. [IVRAttribute("LPos", Model.IVRSerializerType.元素,2, IsPosPoint = true)]
  25. public IVRControlBase LPos
  26. { get; set; }
  27. /// <summary>
  28. /// :待映射的变量等于记录集个数时跳转的节点编号。
  29. /// </summary>
  30. [IVRAttribute("EPos", Model.IVRSerializerType.元素,3, IsPosPoint = true)]
  31. public IVRControlBase EPos
  32. { get; set; }
  33. /// <summary>
  34. /// :待映射的变量大于记录集个数时跳转的节点编号。
  35. /// </summary>
  36. [IVRAttribute("GPos", Model.IVRSerializerType.元素,4, IsPosPoint = true)]
  37. public IVRControlBase GPos
  38. { get; set; }
  39. [IVRAttribute("Map", Model.IVRSerializerType.节点,5, Object = typeof(List<IVRDefaultVar>))]
  40. public List<IVRDefaultVar> Map
  41. { get; set; }
  42. }
  43. }