OpenAuth.Net/OpenAuth.Domain/Core/WFSchemeContent.cs
2017-01-12 19:24:52 +08:00

57 lines
1.5 KiB
C#

//------------------------------------------------------------------------------
// <autogenerated>
// 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
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
/// <summary>
///
/// </summary>
public partial class WFSchemeContent :Entity
{
public WFSchemeContent()
{
this.WFSchemeInfoId= string.Empty;
this.SchemeVersion= string.Empty;
this.SchemeContent= string.Empty;
this.CreateDate= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
}
/// <summary>
///
/// </summary>
public string WFSchemeInfoId { get; set; }
/// <summary>
///
/// </summary>
public string SchemeVersion { get; set; }
/// <summary>
///
/// </summary>
public string SchemeContent { get; set; }
/// <summary>
///
/// </summary>
public System.DateTime CreateDate { get; set; }
/// <summary>
///
/// </summary>
public string CreateUserId { get; set; }
/// <summary>
///
/// </summary>
public string CreateUserName { get; set; }
}
}