You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using SqlSugar;
|
|
|
|
namespace Magic.FlowCenter.Entity;
|
|
|
|
/// <summary>
|
|
/// 自定义表单实体
|
|
/// </summary>
|
|
[Tenant("1")]
|
|
public class FlcInstanceEntity : PrimaryKeyEntity
|
|
{
|
|
/// <summary>
|
|
/// 申请流程Id
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long FlowInstanceId { get; set; }
|
|
}
|