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.
37 lines
923 B
C#
37 lines
923 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
[SugarTable("wf_schemeauth")]
|
|
public class WFSchemeAuth
|
|
{
|
|
#region 实体成员
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 流程模板信息主键
|
|
/// </summary>
|
|
public string SchemeInfoId { get; set; }
|
|
/// <summary>
|
|
/// 对象名称
|
|
/// </summary>
|
|
public string ObjName { get; set; }
|
|
/// <summary>
|
|
/// 对应对象主键
|
|
/// </summary>
|
|
public string ObjId { get; set; }
|
|
/// <summary>
|
|
/// 对应对象类型1岗位2角色3用户4所用人可看
|
|
/// </summary>
|
|
public int? ObjType { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|