using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.Repository.Domain { [SugarTable("wf_scheme")] public class WFScheme { #region 实体成员 /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 流程模板信息主键 /// public string SchemeInfoId { get; set; } /// /// 1.正式2.草稿 /// public int? Type { get; set; } /// /// 创建时间 /// public DateTime? CreateDate { get; set; } /// /// 创建人主键 /// public string CreateUserId { get; set; } /// /// 创建人名字 /// public string CreateUserName { get; set; } /// /// 流程模板内容 /// public string Content { get; set; } /// /// 流程模板内容 /// public string FlowContent { get; set; } #endregion } }