//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Text; namespace OpenAuth.Domain { /// /// /// public partial class WFProcessTransitionHistory :Entity { public WFProcessTransitionHistory() { this.ProcessId= Guid.Empty; this.FromNodeId= string.Empty; this.FromNodeName= string.Empty; this.ToNodeId= string.Empty; this.ToNodeName= string.Empty; this.TransitionSate= 0; this.IsFinish= 0; this.CreateDate= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; } /// /// /// public Guid ProcessId { get; set; } /// /// /// public string FromNodeId { get; set; } /// /// /// public int? FromNodeType { get; set; } /// /// /// public string FromNodeName { get; set; } /// /// /// public string ToNodeId { get; set; } /// /// /// public int? ToNodeType { get; set; } /// /// /// public string ToNodeName { get; set; } /// /// /// public int TransitionSate { get; set; } /// /// /// public int IsFinish { get; set; } /// /// /// public System.DateTime CreateDate { get; set; } /// /// /// public string CreateUserId { get; set; } /// /// /// public string CreateUserName { get; set; } } }