OpenAuth.Net/OpenAuth.Repository/Domain/FlowInstanceScheme.cs

47 lines
1.4 KiB
C#
Raw Normal View History

2017-10-11 16:19:34 +08:00
//------------------------------------------------------------------------------
// <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;
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
2018-03-12 23:44:05 +08:00
/// 工作流实例模板对应表,防止创建实例后原模板被改
2017-10-11 16:19:34 +08:00
/// </summary>
2018-03-12 23:44:05 +08:00
public partial class FlowInstanceScheme : Entity
2017-10-11 16:19:34 +08:00
{
2018-03-12 23:44:05 +08:00
public FlowInstanceScheme()
2017-10-11 16:19:34 +08:00
{
this.SchemeContent= string.Empty;
2018-03-12 23:44:05 +08:00
this.SchemeId= string.Empty;
2017-10-11 16:19:34 +08:00
this.SchemeVersion= string.Empty;
2018-03-12 23:44:05 +08:00
this.ProcessType= 0;
2017-10-11 16:19:34 +08:00
}
/// <summary>
/// 流程模板内容
/// </summary>
public string SchemeContent { get; set; }
/// <summary>
/// 流程模板ID
/// </summary>
2018-03-12 23:44:05 +08:00
public string SchemeId { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 流程内容版本
/// </summary>
public string SchemeVersion { get; set; }
/// <summary>
/// 类型(0正常,3草稿)
/// </summary>
2018-03-12 23:44:05 +08:00
public int ProcessType { get; set; }
2017-10-11 16:19:34 +08:00
}
2017-01-12 19:24:52 +08:00
}