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