using System; using System.Collections.Generic; using System.Text; using VT.FW.DB; namespace Edu.Model.Entity.Log { /// /// 流程修改日志实体类 /// [Serializable] [DB(ConnectionName = "DefaultConnection")] public class RB_Flow_Log { /// /// 流程日志表 /// public int LogId { get; set; } /// /// 流程编号 /// public int FlowId { get; set; } /// /// 日志内容 /// public string LogContent { get; set; } /// /// 集团编号 /// public int Group_Id { get; set; } /// /// 删除状态(1-删除) /// public int Status { get; set; } /// /// 创建人 /// public int CreateBy { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } } }