You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
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 实体成员
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 流程模板信息主键
|
|
/// </summary>
|
|
public string SchemeInfoId { get; set; }
|
|
/// <summary>
|
|
/// 1.正式2.草稿
|
|
/// </summary>
|
|
public int? Type { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime? CreateDate { get; set; }
|
|
/// <summary>
|
|
/// 创建人主键
|
|
/// </summary>
|
|
public string CreateUserId { get; set; }
|
|
/// <summary>
|
|
/// 创建人名字
|
|
/// </summary>
|
|
public string CreateUserName { get; set; }
|
|
/// <summary>
|
|
/// 流程模板内容
|
|
/// </summary>
|
|
public string Content { get; set; }
|
|
/// <summary>
|
|
/// 流程模板内容
|
|
/// </summary>
|
|
public string FlowContent { get; set; }
|
|
#endregion
|
|
|
|
|
|
|
|
}
|
|
}
|