//------------------------------------------------------------------------------
//
// 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
//
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
///
/// 工作流模板信息表
///
[Table("FlowScheme")]
public partial class FlowScheme : Entity
{
public FlowScheme()
{
this.SchemeCode= string.Empty;
this.SchemeName= string.Empty;
this.SchemeType= string.Empty;
this.SchemeVersion= string.Empty;
this.SchemeCanUser= string.Empty;
this.SchemeContent= string.Empty;
this.FrmId= string.Empty;
this.FrmType= 0;
this.AuthorizeType= 0;
this.SortCode= 0;
this.DeleteMark= 0;
this.Disabled= 0;
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;
}
///
/// 流程编号
///
[Description("流程编号")]
public string SchemeCode { get; set; }
///
/// 流程名称
///
[Description("流程名称")]
public string SchemeName { get; set; }
///
/// 流程分类
///
[Description("流程分类")]
public string SchemeType { get; set; }
///
/// 流程内容版本
///
[Description("流程内容版本")]
public string SchemeVersion { get; set; }
///
/// 流程模板使用者
///
[Description("流程模板使用者")]
public string SchemeCanUser { get; set; }
///
/// 流程内容
///
[Description("流程内容")]
public string SchemeContent { get; set; }
///
/// 表单ID
///
[Description("表单ID")]
public string FrmId { get; set; }
///
/// 表单类型
///
[Description("表单类型")]
public int FrmType { get; set; }
///
/// 模板权限类型:0完全公开,1指定部门/人员
///
[Description("模板权限类型:0完全公开,1指定部门/人员")]
public int AuthorizeType { get; set; }
///
/// 排序码
///
[Description("排序码")]
public int SortCode { get; set; }
///
/// 删除标记
///
[Description("删除标记")]
public int DeleteMark { get; set; }
///
/// 有效
///
[Description("有效")]
public int Disabled { get; set; }
///
/// 备注
///
[Description("备注")]
public string Description { get; set; }
///
/// 创建时间
///
[Description("创建时间")]
public System.DateTime CreateDate { get; set; }
///
/// 创建用户主键
///
[Description("创建用户主键")]
public string CreateUserId { get; set; }
///
/// 创建用户
///
[Description("创建用户")]
public string CreateUserName { get; set; }
///
/// 修改时间
///
[Description("修改时间")]
public System.DateTime? ModifyDate { get; set; }
///
/// 修改用户主键
///
[Description("修改用户主键")]
public string ModifyUserId { get; set; }
///
/// 修改用户
///
[Description("修改用户")]
public string ModifyUserName { get; set; }
///
/// 所属部门
///
[Description("所属部门")]
public string OrgId { get; set; }
}
}