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.
31 lines
777 B
C#
31 lines
777 B
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_delegaterelation")]
|
|
public class WFDelegateRelation
|
|
{
|
|
#region 实体成员
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 委托规则主键
|
|
/// </summary>
|
|
public string DelegateRuleId { get; set; }
|
|
/// <summary>
|
|
/// 流程模板信息主键
|
|
/// </summary>
|
|
public string SchemeInfoId { get; set; }
|
|
#endregion
|
|
}
|
|
}
|