//------------------------------------------------------------------------------ // // 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 WFProcessScheme :Entity { public WFProcessScheme() { this.SchemeContent= string.Empty; this.SchemeInfoId= Guid.Empty; this.SchemeVersion= string.Empty; this.ProcessType= 0; } /// /// /// public string SchemeContent { get; set; } /// /// /// public Guid SchemeInfoId { get; set; } /// /// /// public string SchemeVersion { get; set; } /// /// /// public int ProcessType { get; set; } #region 扩展操作 /// /// 新增调用 /// public void Create() { this.Id = Guid.NewGuid(); } /// /// 编辑调用 /// /// public void Modify(Guid keyValue) { this.Id = keyValue; } #endregion } }