using System; using System.Collections.Generic; using System.Text; namespace RoadFlow.Model.FlowRunModel { /// /// 流程数据连接实体 /// public class Database { /// /// 连接ID /// public Guid ConnectionId { get; set; } /// /// 连接名称 /// public string ConnectionName { get; set; } /// /// 表名 /// public string Table { get; set; } /// /// 主键 /// public string PrimaryKey { get; set; } public override string ToString() { return Newtonsoft.Json.JsonConvert.SerializeObject(this); } } }