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.
17 lines
366 B
C#
17 lines
366 B
C#
using SqlSugar;
|
|
|
|
namespace Myshipping.FlowCenter.Entity;
|
|
|
|
/// <summary>
|
|
/// 自定义表单实体
|
|
/// </summary>
|
|
[Tenant("1")]
|
|
public class FlcInstanceEntity : PrimaryKeyEntity
|
|
{
|
|
/// <summary>
|
|
/// 申请流程Id
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnName = "FlowInstanceId", ColumnDataType = "int")]
|
|
public long FlowInstanceId { get; set; }
|
|
}
|