OpenAuth.Net/OpenAuth.Repository/Domain/FlowScheme.cs

112 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 FlowScheme : Entity
2017-10-11 16:19:34 +08:00
{
2018-03-12 23:44:05 +08:00
public FlowScheme()
2017-10-11 16:19:34 +08:00
{
this.SchemeCode= string.Empty;
this.SchemeName= string.Empty;
this.SchemeType= string.Empty;
this.SchemeVersion= string.Empty;
this.SchemeCanUser= string.Empty;
2018-03-12 23:44:05 +08:00
this.FrmType= 0;
this.AuthorizeType= 0;
this.SortCode= 0;
this.DeleteMark= 0;
this.Disabled= 0;
2017-10-11 16:19:34 +08:00
this.Description= string.Empty;
this.CreateDate= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
this.ModifyDate= DateTime.Now;
this.ModifyUserId= string.Empty;
this.ModifyUserName= string.Empty;
}
/// <summary>
/// 流程编号
/// </summary>
public string SchemeCode { get; set; }
/// <summary>
/// 流程名称
/// </summary>
public string SchemeName { get; set; }
/// <summary>
/// 流程分类
/// </summary>
public string SchemeType { get; set; }
/// <summary>
/// 流程内容版本
/// </summary>
public string SchemeVersion { get; set; }
/// <summary>
/// 流程模板使用者
/// </summary>
public string SchemeCanUser { 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>
/// 模板权限类型0所有人,1指定成员
/// </summary>
2018-03-12 23:44:05 +08:00
public int AuthorizeType { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 排序码
/// </summary>
2018-03-12 23:44:05 +08:00
public int SortCode { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 删除标记
/// </summary>
2018-03-12 23:44:05 +08:00
public int DeleteMark { get; set; }
2017-10-11 16:19:34 +08:00
/// <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>
public string Description { get; set; }
/// <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>
public System.DateTime? ModifyDate { get; set; }
/// <summary>
/// 修改用户主键
/// </summary>
public string ModifyUserId { get; set; }
/// <summary>
/// 修改用户
/// </summary>
public string ModifyUserName { get; set; }
}
2017-01-12 19:24:52 +08:00
}