/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此Model */ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using VOL.Entity.SystemModels; namespace VOL.Entity.DomainModels { [Entity(TableCnName = "审批节点",TableName = "Sys_WorkFlowTableStep")] public partial class Sys_WorkFlowTableStep:SysEntity { /// /// /// [Key] [Display(Name ="Sys_WorkFlowTableStep_Id")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid Sys_WorkFlowTableStep_Id { get; set; } /// ///主表id /// [Display(Name ="主表id")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid WorkFlowTable_Id { get; set; } /// ///流程id /// [Display(Name ="流程id")] [Column(TypeName="uniqueidentifier")] public Guid? WorkFlow_Id { get; set; } /// ///节点id /// [Display(Name ="节点id")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string StepId { get; set; } /// ///节名称 /// [Display(Name ="节名称")] [MaxLength(200)] [Column(TypeName="nvarchar(200)")] public string StepName { get; set; } /// ///审批类型 /// [Display(Name ="审批类型")] [Column(TypeName="int")] public int? StepType { get; set; } /// ///节点类型(1=按用户审批,2=按角色审批) /// [Display(Name ="节点类型(1=按用户审批,2=按角色审批)")] [Column(TypeName="int")] public int? StepValue { get; set; } /// ///审批顺序 /// [Display(Name ="审批顺序")] [Column(TypeName="int")] public int? OrderId { get; set; } /// /// /// [Display(Name ="Remark")] [MaxLength(500)] [Column(TypeName="nvarchar(500)")] public string Remark { get; set; } /// /// /// [Display(Name ="CreateDate")] [Column(TypeName="datetime")] public DateTime? CreateDate { get; set; } /// /// /// [Display(Name ="CreateID")] [Column(TypeName="int")] public int? CreateID { get; set; } /// /// /// [Display(Name ="Creator")] [MaxLength(30)] [Column(TypeName="nvarchar(30)")] public string Creator { get; set; } /// /// /// [Display(Name ="Enable")] [Column(TypeName="tinyint")] public byte? Enable { get; set; } /// /// /// [Display(Name ="Modifier")] [MaxLength(30)] [Column(TypeName="nvarchar(30)")] public string Modifier { get; set; } /// /// /// [Display(Name ="ModifyDate")] [Column(TypeName="datetime")] public DateTime? ModifyDate { get; set; } /// /// /// [Display(Name ="ModifyID")] [Column(TypeName="int")] public int? ModifyID { get; set; } /// ///审核人id /// [Display(Name ="审核人id")] [Column(TypeName="int")] public int? AuditId { get; set; } /// ///审核人 /// [Display(Name ="审核人")] [MaxLength(50)] [Column(TypeName="nvarchar(50)")] public string Auditor { get; set; } /// ///审核状态 /// [Display(Name ="审核状态")] [Column(TypeName="int")] public int? AuditStatus { get; set; } /// ///审核时间 /// [Display(Name ="审核时间")] [Column(TypeName="datetime")] public DateTime? AuditDate { get; set; } } }