//------------------------------------------------------------------------------ // // 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 WFProcessOperationHistory :Entity { public WFProcessOperationHistory() { this.ProcessId= Guid.Empty; this.Content= string.Empty; this.CreateDate= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; } /// /// /// public Guid ProcessId { get; set; } /// /// /// public string Content { get; set; } /// /// /// public System.DateTime CreateDate { get; set; } /// /// /// public string CreateUserId { get; set; } /// /// /// public string CreateUserName { get; set; } } }