OpenAuth.Net/OpenAuth.Repository/Domain/FlowInstance.cs

111 lines
3.3 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>
/// 工作流流程实例表
/// </summary>
2018-03-12 23:44:05 +08:00
public partial class FlowInstance : Entity
2017-10-11 16:19:34 +08:00
{
2018-03-12 23:44:05 +08:00
public FlowInstance()
2017-10-11 16:19:34 +08:00
{
2018-03-12 23:44:05 +08:00
this.InstanceSchemeId= string.Empty;
2017-10-11 16:19:34 +08:00
this.Code= string.Empty;
this.CustomName= string.Empty;
this.ActivityId= string.Empty;
this.ActivityName= string.Empty;
this.PreviousId= string.Empty;
2018-03-12 23:44:05 +08:00
this.FrmType= 0;
2017-10-11 16:19:34 +08:00
this.SchemeType= string.Empty;
2018-03-12 23:44:05 +08:00
this.Disabled= 0;
2017-10-11 16:19:34 +08:00
this.CreateDate= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
2018-03-12 23:44:05 +08:00
this.FlowLevel= 0;
2017-10-11 16:19:34 +08:00
this.Description= string.Empty;
2018-03-12 23:44:05 +08:00
this.IsFinish= 0;
2017-10-11 16:19:34 +08:00
this.MakerList= string.Empty;
}
2018-03-12 23:44:05 +08:00
/// <summary>
/// 流程实例模板Id
/// </summary>
public string InstanceSchemeId { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 实例编号
/// </summary>
public string Code { get; set; }
/// <summary>
/// 自定义名称
/// </summary>
public string CustomName { get; set; }
/// <summary>
/// 当前节点ID
/// </summary>
public string ActivityId { get; set; }
/// <summary>
/// 当前节点类型0会签节点
/// </summary>
public int? ActivityType { get; set; }
/// <summary>
/// 当前节点名称
/// </summary>
public string ActivityName { get; set; }
/// <summary>
/// 前一个ID
/// </summary>
public string PreviousId { get; set; }
/// <summary>
/// 表单类型
/// </summary>
2018-03-12 23:44:05 +08:00
public int FrmType { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 流程类型
/// </summary>
public string SchemeType { get; set; }
/// <summary>
/// 有效标志
/// </summary>
2018-03-12 23:44:05 +08:00
public int Disabled { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 创建时间
/// </summary>
2018-03-12 23:44:05 +08:00
public System.DateTime CreateDate { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 创建用户主键
/// </summary>
public string CreateUserId { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string CreateUserName { get; set; }
/// <summary>
/// 等级
/// </summary>
2018-03-12 23:44:05 +08:00
public int FlowLevel { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 实例备注
/// </summary>
public string Description { get; set; }
/// <summary>
/// 是否完成
/// </summary>
2018-03-12 23:44:05 +08:00
public int IsFinish { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 执行人
/// </summary>
public string MakerList { get; set; }
}
2017-01-12 19:24:52 +08:00
}