| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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_SQL", Model.IVRSerializerType.节点,1)]
- public class IVRSql : IVRControlBase
- {
- public IVRSql(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVRSql(this);
-
- }
- /// <summary>
- /// :数据库连接字符串。
- /// </summary>
- [IVRAttribute("ConnStr", Model.IVRSerializerType.元素,2)]
- public string ConnStr
- { get; set; }
- /// <summary>
- /// :要执行的SQL语句。
- /// </summary>
- [IVRAttribute("SqlStr", Model.IVRSerializerType.元素,3)]
- public string SqlStr
- { get; set; }
- /// <summary>
- /// :SQL执行是否返回记录集,”yes”返回、”no”不返回。
- /// </summary>
- [IVRAttribute("IsSaved", Model.IVRSerializerType.元素,4)]
- public bool IsSaved
- { get; set; }
- /// <summary>
- /// :执行成功跳转节点编号。
- /// </summary>
- [IVRAttribute("SuccessPos", Model.IVRSerializerType.元素,5, IsPosPoint = true)]
- public IVRControlBase SuccessPos
- { get; set; }
- /// <summary>
- /// :执行失败跳转节点编号。
- /// </summary>
- [IVRAttribute("FailPos", Model.IVRSerializerType.元素,6, IsPosPoint = true)]
- public IVRControlBase FailPos
- { get; set; }
-
- }
-
- }
|