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

150 lines
4.7 KiB
C#
Raw Permalink 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>
//------------------------------------------------------------------------------
2017-10-11 16:19:34 +08:00
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
2017-10-11 16:19:34 +08:00
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
/// 工作流模板信息表
/// </summary>
[Table("FlowScheme")]
public partial class FlowScheme : StringEntity
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-15 10:32:36 +08:00
this.SchemeContent= string.Empty;
this.FrmId= 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>
[Description("流程编号")]
2017-10-11 16:19:34 +08:00
public string SchemeCode { get; set; }
/// <summary>
/// 流程名称
/// </summary>
[Description("流程名称")]
2017-10-11 16:19:34 +08:00
public string SchemeName { get; set; }
/// <summary>
/// 流程分类
/// </summary>
[Description("流程分类")]
2017-10-11 16:19:34 +08:00
public string SchemeType { get; set; }
/// <summary>
/// 流程内容版本
/// </summary>
[Description("流程内容版本")]
2017-10-11 16:19:34 +08:00
public string SchemeVersion { get; set; }
/// <summary>
/// 流程模板使用者
/// </summary>
[Description("流程模板使用者")]
2017-10-11 16:19:34 +08:00
public string SchemeCanUser { get; set; }
2018-03-15 10:32:36 +08:00
/// <summary>
/// 流程内容
/// </summary>
[Description("流程内容")]
2018-03-15 10:32:36 +08:00
public string SchemeContent { get; set; }
/// <summary>
/// 表单ID
/// </summary>
[Description("表单ID")]
2018-03-15 10:32:36 +08:00
public string FrmId { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 表单类型
/// </summary>
[Description("表单类型")]
2018-03-12 23:44:05 +08:00
public int FrmType { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
2018-03-15 10:32:36 +08:00
/// 模板权限类型0完全公开,1指定部门/人员
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("模板权限类型0完全公开,1指定部门/人员")]
2018-03-12 23:44:05 +08:00
public int AuthorizeType { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 排序码
/// </summary>
[Description("排序码")]
2018-03-12 23:44:05 +08:00
public int SortCode { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 删除标记
/// </summary>
[Description("删除标记")]
2018-03-12 23:44:05 +08:00
public int DeleteMark { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 有效
/// </summary>
[Description("有效")]
2018-03-12 23:44:05 +08:00
public int Disabled { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 备注
/// </summary>
[Description("备注")]
2017-10-11 16:19:34 +08:00
public string Description { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
2018-03-12 23:44:05 +08:00
public System.DateTime CreateDate { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 创建用户主键
/// </summary>
[Description("创建用户主键")]
2017-10-11 16:19:34 +08:00
public string CreateUserId { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[Description("创建用户")]
2017-10-11 16:19:34 +08:00
public string CreateUserName { get; set; }
/// <summary>
/// 修改时间
/// </summary>
[Description("修改时间")]
2017-10-11 16:19:34 +08:00
public System.DateTime? ModifyDate { get; set; }
/// <summary>
/// 修改用户主键
/// </summary>
[Description("修改用户主键")]
2017-10-11 16:19:34 +08:00
public string ModifyUserId { get; set; }
/// <summary>
/// 修改用户
/// </summary>
[Description("修改用户")]
2017-10-11 16:19:34 +08:00
public string ModifyUserName { get; set; }
/// <summary>
/// 所属部门
/// </summary>
[Description("所属部门")]
public string OrgId { get; set; }
2017-10-11 16:19:34 +08:00
}
2017-01-12 19:24:52 +08:00
}