using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.System { /// /// 审核模板节点人员表 /// [SugarTable(tableName: "Sys_AuditTemplateNodeUser", tableDescription: "审核模板节点人员表")] public class Sys_AuditTemplateNodeUser : EntityBase { /// /// 审核节点Id /// [SugarColumn(ColumnDescription = "审核节点Id", IsNullable = true, ColumnDataType = "int")] public int NodeId { get; set; } /// /// 用户ID /// [SugarColumn(ColumnDescription = "审核人员Id", IsNullable = true, ColumnDataType = "int")] public int UserId { get; set; } /// /// 用户姓名 /// [SugarColumn(ColumnDescription = "用户姓名", IsNullable = true, ColumnDataType = "varchar(30)")] public string UserName { get; set; } } }