using System; using System.Collections.Generic; using System.Text; using VT.FW.DB; namespace Edu.Model.Entity.Flow { /// /// 流程节点实体类 /// [Serializable] [DB(ConnectionName = "DefaultConnection")] public class RB_Flow_Node { /// /// 节点编号(主键) /// public int NodeId { get; set; } /// /// 节点名称 /// public string NodeName { get; set; } /// /// 流程编号 /// public int FlowId { get; set; } /// /// 排序 /// public int SortNum { get; set; } } }