//------------------------------------------------------------------------------ // // 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 WFProcessInstance :Entity { public WFProcessInstance() { this.Code= string.Empty; this.CustomName= string.Empty; this.ActivityId= string.Empty; this.ActivityType= 0; this.ActivityName= string.Empty; this.PreviousId= string.Empty; this.ProcessSchemeId= string.Empty; this.SchemeType= string.Empty; this.EnabledMark= 0; this.CreateDate= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.Description= string.Empty; this.MakerList= string.Empty; } /// /// /// public string Code { get; set; } /// /// /// public string CustomName { get; set; } /// /// /// public string ActivityId { get; set; } /// /// /// public int ActivityType { get; set; } /// /// /// public string ActivityName { get; set; } /// /// /// public string PreviousId { get; set; } /// /// /// public string ProcessSchemeId { get; set; } /// /// /// public string SchemeType { get; set; } /// /// /// public int? FrmType { get; set; } /// /// /// public int EnabledMark { get; set; } /// /// /// public System.DateTime CreateDate { get; set; } /// /// /// public string CreateUserId { get; set; } /// /// /// public string CreateUserName { get; set; } /// /// /// public int? WfLevel { get; set; } /// /// /// public string Description { get; set; } /// /// /// public int? IsFinish { get; set; } /// /// /// public string MakerList { get; set; } } }