using SqlSugar; namespace Myshipping.FlowCenter.Entity; /// /// 自定义表单实体 /// [Tenant("1")] public class FlcInstanceEntity : PrimaryKeyEntity { /// /// 申请流程Id /// [SugarColumn(IsNullable = true, ColumnName = "FlowInstanceId", ColumnDataType = "int")] public long FlowInstanceId { get; set; } }