//
using System;
using CloudGaming.Repository.Admin;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable
namespace CloudGaming.Repository.EntityFramework.Admin.Migrations
{
[DbContext(typeof(AdminDbContext))]
partial class AdminDbContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "7.0.5")
.HasAnnotation("Relational:MaxIdentifierLength", 64);
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Algorithms.AlgorithmFunction", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.HasKey("Id");
b.ToTable("algorithm_function");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ApprovalFlow.Flow", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("Code")
.HasColumnType("longtext")
.HasColumnName("code");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("Number")
.HasColumnType("int")
.HasColumnName("number");
b.Property("Remark")
.HasColumnType("longtext")
.HasColumnName("remark");
b.HasKey("Id");
b.ToTable("flow");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ApprovalFlow.FlowApproval", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("FlowCode")
.HasColumnType("longtext")
.HasColumnName("flow_code");
b.Property("FlowId")
.HasColumnType("char(36)")
.HasColumnName("flow_id");
b.Property("FlowName")
.HasColumnType("longtext")
.HasColumnName("flow_name");
b.Property("FormId")
.HasColumnType("char(36)")
.HasColumnName("form_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("LaunchTime")
.HasColumnType("datetime(6)")
.HasColumnName("launch_time");
b.Property("UserId")
.HasColumnType("char(36)")
.HasColumnName("user_id");
b.Property("UserName")
.HasColumnType("longtext")
.HasColumnName("user_name");
b.HasKey("Id");
b.ToTable("flow_approval");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ApprovalFlow.FlowApprovalStepHistory", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("ApprovalDate")
.HasColumnType("datetime(6)")
.HasColumnName("approval_date");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("FlowNodeId")
.HasColumnType("char(36)")
.HasColumnName("flow_node_id");
b.Property("FlowNodeName")
.HasColumnType("longtext")
.HasColumnName("flow_node_name");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Opinions")
.HasColumnType("longtext")
.HasColumnName("opinions");
b.Property("Sort")
.HasColumnType("int")
.HasColumnName("sort");
b.Property("SortMore")
.HasColumnType("int")
.HasColumnName("sort_more");
b.Property("State")
.HasColumnType("int")
.HasColumnName("state");
b.Property("UserId")
.HasColumnType("char(36)")
.HasColumnName("user_id");
b.Property("UserName")
.HasColumnType("longtext")
.HasColumnName("user_name");
b.HasKey("Id");
b.ToTable("flow_approval_step_history");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ApprovalFlow.FlowApprovalStepHistoryUser", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("FlowApprovalStepHistoryId")
.HasColumnType("char(36)")
.HasColumnName("flow_approval_step_history_id");
b.Property("FlowNodeId")
.HasColumnType("char(36)")
.HasColumnName("flow_node_id");
b.Property("FlowNodeName")
.HasColumnType("longtext")
.HasColumnName("flow_node_name");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("UserId")
.HasColumnType("char(36)")
.HasColumnName("user_id");
b.Property("UserName")
.HasColumnType("longtext")
.HasColumnName("user_name");
b.HasKey("Id");
b.ToTable("flow_approval_step_history_user");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ApprovalFlow.FlowNode", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("FlowId")
.HasColumnType("char(36)")
.HasColumnName("flow_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("Remark")
.HasColumnType("longtext")
.HasColumnName("remark");
b.Property("RoleId")
.HasColumnType("char(36)")
.HasColumnName("role_id");
b.Property("Sort")
.HasColumnType("int")
.HasColumnName("sort");
b.HasKey("Id");
b.ToTable("flow_node");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Base.Member", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("Birthday")
.HasColumnType("datetime(6)")
.HasColumnName("birthday");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("FilePath")
.HasColumnType("longtext")
.HasColumnName("file_path");
b.Property("Introduce")
.HasColumnType("longtext")
.HasColumnName("introduce");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("Number")
.HasColumnType("longtext")
.HasColumnName("number");
b.Property("Phone")
.HasColumnType("longtext")
.HasColumnName("phone");
b.Property("Photo")
.HasColumnType("longtext")
.HasColumnName("photo");
b.Property("Sex")
.HasColumnType("longtext")
.HasColumnName("sex");
b.Property("UserId")
.HasColumnType("char(36)")
.HasColumnName("user_id");
b.HasKey("Id");
b.ToTable("member");
b.HasData(
new
{
Id = new Guid("96a1aa3d-a61a-42d0-954a-c71753fb2065"),
Birthday = new DateTime(2018, 4, 25, 23, 0, 0, 0, DateTimeKind.Unspecified),
CreationTime = new DateTime(2020, 10, 24, 0, 7, 42, 0, DateTimeKind.Unspecified),
FilePath = "[{\"uid\":\"a6778e9d-6c2e-4d23-91c9-d0d10756d177\",\"name\":\"time_000345_old_name_hzy.png\",\"percent\":100,\"status\":\"done\",\"thumbUrl\":\"/upload/files/20220731/time_000345_old_name_hzy.png\",\"url\":\"/upload/files/20220731/time_000345_old_name_hzy.png\"}]",
Introduce = "123
",
LastModificationTime = new DateTime(2022, 7, 31, 0, 3, 48, 0, DateTimeKind.Unspecified),
Name = "123",
Number = "123",
Phone = "123",
Photo = "[{\"uid\":\"d80bbe3d-7296-4eb9-965a-cb3f03d3def7\",\"name\":\"time_000335_old_name_微信图片_20200413162625.jpg\",\"percent\":100,\"status\":\"done\",\"thumbUrl\":\"/upload/files/20220731/time_000335_old_name_微信图片_20200413162625.jpg\",\"url\":\"/upload/files/20220731/time_000335_old_name_微信图片_20200413162625.jpg\"}]",
Sex = "女",
UserId = new Guid("ac18f496-e93d-42f0-b59e-e321acc85335")
},
new
{
Id = new Guid("9a604aa2-9ae6-4a2f-8ddb-d9e0289ead9e"),
Birthday = new DateTime(2019, 7, 8, 11, 47, 24, 0, DateTimeKind.Unspecified),
CreationTime = new DateTime(2018, 4, 25, 23, 0, 0, 0, DateTimeKind.Unspecified),
FilePath = "[{\"uid\":\"35828ad6-cbba-4bcb-9c97-141d5b31acc7\",\"name\":\"time_000320_old_name_Ko.js增删改查例子.txt\",\"percent\":100,\"status\":\"done\",\"thumbUrl\":\"/upload/files/20220731/time_000320_old_name_Ko.js增删改查例子.txt\",\"url\":\"/upload/files/20220731/time_000320_old_name_Ko.js增删改查例子.txt\"}]",
Introduce = "999888
",
LastModificationTime = new DateTime(2022, 7, 31, 0, 3, 23, 0, DateTimeKind.Unspecified),
Name = "测试会员",
Number = "1",
Phone = "18510912123",
Photo = "[{\"uid\":\"6f5aed63-0fdc-4752-9c2b-3f66cbfa77bf\",\"name\":\"time_000222_old_name_微信图片_20200521081252.jpg\",\"percent\":100,\"status\":\"done\",\"thumbUrl\":\"/upload/files/20220731/time_000222_old_name_微信图片_20200521081252.jpg\",\"url\":\"/upload/files/20220731/time_000222_old_name_微信图片_20200521081252.jpg\"}]",
Sex = "男",
UserId = new Guid("ac18f496-e93d-42f0-b59e-e321acc85335")
});
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.LowCode.LowCodeList", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("ForeignKeyTableFieldName")
.HasColumnType("longtext")
.HasColumnName("foreign_key_table_field_name");
b.Property("ForeignKeyTableId")
.HasColumnType("char(36)")
.HasColumnName("foreign_key_table_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Low_Code_TableId")
.HasColumnType("char(36)")
.HasColumnName("low_code_table_id");
b.Property("Low_Code_Table_InfoId")
.HasColumnType("char(36)")
.HasColumnName("low_code_table_info_id");
b.HasKey("Id");
b.ToTable("low_code_list");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.LowCode.LowCodeSearch", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Low_Code_TableId")
.HasColumnType("char(36)")
.HasColumnName("low_code_table_id");
b.Property("Low_Code_Table_InfoId")
.HasColumnType("char(36)")
.HasColumnName("low_code_table_info_id");
b.HasKey("Id");
b.ToTable("low_code_search");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.LowCode.LowCodeTable", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("ClientIndexPath")
.HasColumnType("longtext")
.HasColumnName("client_index_path");
b.Property("ClientInfoPath")
.HasColumnType("longtext")
.HasColumnName("client_info_path");
b.Property("ClientServicePath")
.HasColumnType("longtext")
.HasColumnName("client_service_path");
b.Property("ControllerPath")
.HasColumnType("longtext")
.HasColumnName("controller_path");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("DisplayName")
.HasColumnType("longtext")
.HasColumnName("display_name");
b.Property("EntityName")
.HasColumnType("longtext")
.HasColumnName("entity_name");
b.Property("IsCover")
.HasColumnType("tinyint(1)")
.HasColumnName("is_cover");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("ModelPath")
.HasColumnType("longtext")
.HasColumnName("model_path");
b.Property("Remark")
.HasColumnType("longtext")
.HasColumnName("remark");
b.Property("Schema")
.HasColumnType("longtext")
.HasColumnName("schema");
b.Property("ServicePath")
.HasColumnType("longtext")
.HasColumnName("service_path");
b.Property("TableName")
.HasColumnType("longtext")
.HasColumnName("table_name");
b.Property("Type")
.HasColumnType("longtext")
.HasColumnName("type");
b.HasKey("Id");
b.ToTable("low_code_table");
b.HasData(
new
{
Id = new Guid("69b24f04-0ed3-45fc-91d9-0dc929175a57"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "用户与岗位",
EntityName = "SysUserPost",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_user_post",
Type = "TABLE"
},
new
{
Id = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
CreationTime = new DateTime(2022, 7, 29, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "",
EntityName = "FlowApprovalStepHistoryUser",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "flow_approval_step_history_user",
Type = "TABLE"
},
new
{
Id = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
CreationTime = new DateTime(2022, 5, 23, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "低代码表",
EntityName = "LowCodeTable",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "low_code_table",
Type = "TABLE"
},
new
{
Id = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "工作流审批步骤配置",
EntityName = "FlowApprovalStep",
IsCover = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 59, 11, 0, DateTimeKind.Unspecified),
TableName = "flow_approval_step"
},
new
{
Id = new Guid("524e71b4-cbf7-4248-8b29-3f99b43f2eb2"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "自定义数据权限",
EntityName = "SysDataAuthorityCustom",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_data_authority_custom",
Type = "TABLE"
},
new
{
Id = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "工作流用户审批步骤",
EntityName = "FlowApprovalStepUser",
IsCover = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 59, 11, 0, DateTimeKind.Unspecified),
TableName = "flow_approval_step_user"
},
new
{
Id = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "审批流",
EntityName = "Flow",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "flow",
Type = "TABLE"
},
new
{
Id = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "操作日志",
EntityName = "SysOperationLog",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_operation_log",
Type = "TABLE"
},
new
{
Id = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "菜单功能",
EntityName = "SysMenuFunction",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_menu_function",
Type = "TABLE"
},
new
{
Id = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "审批流审批",
EntityName = "FlowApproval",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "flow_approval",
Type = "TABLE"
},
new
{
Id = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "组织",
EntityName = "SysOrganization",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_organization",
Type = "TABLE"
},
new
{
Id = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "用户",
EntityName = "SysUser",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_user",
Type = "TABLE"
},
new
{
Id = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
CreationTime = new DateTime(2022, 5, 23, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "低代码表信息",
EntityName = "LowCodeTableInfo",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "low_code_table_info",
Type = "TABLE"
},
new
{
Id = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "数据字典",
EntityName = "SysDictionary",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_dictionary",
Type = "TABLE"
},
new
{
Id = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "会员",
EntityName = "Member",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "member",
Type = "TABLE"
},
new
{
Id = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "菜单",
EntityName = "SysMenu",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_menu",
Type = "TABLE"
},
new
{
Id = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "角色",
EntityName = "SysRole",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_role",
Type = "TABLE"
},
new
{
Id = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
CreationTime = new DateTime(2022, 5, 23, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "低代码列表",
EntityName = "LowCodeList",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "low_code_list",
Type = "TABLE"
},
new
{
Id = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "工作流节点",
EntityName = "FlowNode",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "flow_node",
Type = "TABLE"
},
new
{
Id = new Guid("69edd8a8-1d24-478c-a909-b82039edcec0"),
CreationTime = new DateTime(2022, 5, 23, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "低代码检索表",
EntityName = "LowCodeSearch",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "low_code_search",
Type = "TABLE"
},
new
{
Id = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
CreationTime = new DateTime(2022, 7, 29, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "",
EntityName = "FlowApprovalStepHistory",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "flow_approval_step_history",
Type = "TABLE"
},
new
{
Id = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "功能",
EntityName = "SysFunction",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_function",
Type = "TABLE"
},
new
{
Id = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
ClientIndexPath = "E:\\5-Gitee\\hzy-microservices\\microservices-client\\src\\views\\Apps",
ClientInfoPath = "E:\\5-Gitee\\hzy-microservices\\microservices-client\\src\\views\\Apps",
ClientServicePath = "E:\\5-Gitee\\hzy-microservices\\microservices-client\\src\\services\\Apps",
ControllerPath = "E:\\5-Gitee\\hzy-microservices\\microservices-server\\CloudGaming.Api.Admin\\Controllers\\Apps",
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "岗位",
EntityName = "SysPost",
IsCover = false,
LastModificationTime = new DateTime(2023, 3, 14, 23, 55, 47, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
ModelPath = "E:\\5-Gitee\\hzy-microservices\\microservices-server\\CloudGaming.Core.EntityFramework.Admin\\Entities\\Apps",
Schema = "dbo",
ServicePath = "E:\\5-Gitee\\hzy-microservices\\microservices-server\\CloudGaming.Api.Admin\\ApplicationServices\\Apps",
TableName = "sys_post",
Type = "TABLE"
},
new
{
Id = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "角色菜单功能关联",
EntityName = "SysRoleMenuFunction",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_role_menu_function",
Type = "TABLE"
},
new
{
Id = new Guid("e79db53b-7162-4669-9b5e-f860501475ac"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "数据权限",
EntityName = "SysDataAuthority",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_data_authority",
Type = "TABLE"
},
new
{
Id = new Guid("3da5d264-2e8d-460c-a10c-ff9a6bb57a60"),
CreationTime = new DateTime(2022, 4, 17, 0, 0, 0, 0, DateTimeKind.Unspecified),
DisplayName = "用户与角色",
EntityName = "SysUserRole",
IsCover = false,
LastModificationTime = new DateTime(2022, 8, 1, 20, 32, 25, 0, DateTimeKind.Unspecified),
Schema = "dbo",
TableName = "sys_user_role",
Type = "TABLE"
});
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.LowCode.LowCodeTableInfo", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("ColumnName")
.HasColumnType("longtext")
.HasColumnName("column_name");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("CsField")
.HasColumnType("longtext")
.HasColumnName("cs_field");
b.Property("CsType")
.HasColumnType("longtext")
.HasColumnName("cs_type");
b.Property("DatabaseColumnType")
.HasColumnType("longtext")
.HasColumnName("database_column_type");
b.Property("Describe")
.HasColumnType("longtext")
.HasColumnName("describe");
b.Property("DisplayName")
.HasColumnType("longtext")
.HasColumnName("display_name");
b.Property("IsIdentity")
.HasColumnType("tinyint(1)")
.HasColumnName("is_identity");
b.Property("IsNullable")
.HasColumnType("tinyint(1)")
.HasColumnName("is_nullable");
b.Property("IsPrimary")
.HasColumnType("tinyint(1)")
.HasColumnName("is_primary");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Low_Code_TableId")
.HasColumnType("char(36)")
.HasColumnName("low_code_table_id");
b.Property("MaxLength")
.HasColumnType("int")
.HasColumnName("max_length");
b.Property("Position")
.HasColumnType("int")
.HasColumnName("position");
b.HasKey("Id");
b.ToTable("low_code_table_info");
b.HasData(
new
{
Id = new Guid("60019cd9-49eb-489b-97b5-08da39a2ef6c"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 19, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "Id",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 19, 22, 26, 18, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("3da5d264-2e8d-460c-a10c-ff9a6bb57a60"),
Position = 170
},
new
{
Id = new Guid("825e69b9-cd33-4ab8-97b6-08da39a2ef6c"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 19, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 19, 22, 26, 18, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("3da5d264-2e8d-460c-a10c-ff9a6bb57a60"),
Position = 174
},
new
{
Id = new Guid("252ac7b2-0e62-48e1-97b7-08da39a2ef6c"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 19, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 19, 22, 26, 18, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("3da5d264-2e8d-460c-a10c-ff9a6bb57a60"),
Position = 173
},
new
{
Id = new Guid("2029bb6d-a0f2-41de-97b8-08da39a2ef6c"),
ColumnName = "RoleId",
CreationTime = new DateTime(2022, 5, 19, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "RoleId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 19, 22, 26, 18, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("3da5d264-2e8d-460c-a10c-ff9a6bb57a60"),
Position = 172
},
new
{
Id = new Guid("18b4430b-765d-4a71-97b9-08da39a2ef6c"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 19, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 19, 22, 26, 18, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("3da5d264-2e8d-460c-a10c-ff9a6bb57a60"),
Position = 171
},
new
{
Id = new Guid("a72c0341-82e8-48ad-d481-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 16,
Position = 24
},
new
{
Id = new Guid("70e30a70-99f9-44b3-d482-08da3d8d5a26"),
ColumnName = "Code",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Code",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "编码",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 255,
Position = 28
},
new
{
Id = new Guid("5fc01eb0-4833-4e93-d483-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 8,
Position = 26
},
new
{
Id = new Guid("fd9abf54-3c88-44b0-d484-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 8,
Position = 25
},
new
{
Id = new Guid("06f4f5a9-f63f-4e47-d485-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "流程名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 255,
Position = 29
},
new
{
Id = new Guid("5cb41f1c-e68a-47f9-d486-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "排序号",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 4,
Position = 27
},
new
{
Id = new Guid("f21d4c33-e65a-4dfe-d487-08da3d8d5a26"),
ColumnName = "Remark",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Remark",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "备注",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("1a8df018-79f8-4e26-b4eb-4b735aae7275"),
MaxLength = 255,
Position = 30
},
new
{
Id = new Guid("b9bbab1d-0a03-4d07-d488-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 16,
Position = 31
},
new
{
Id = new Guid("01ca178c-112a-4a49-d489-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 8,
Position = 33
},
new
{
Id = new Guid("a0fdeb45-c9fe-439b-d48a-08da3d8d5a26"),
ColumnName = "FlowCode",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowCode",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "流程编码",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 255,
Position = 39
},
new
{
Id = new Guid("2b4747ed-0409-4d14-d48b-08da3d8d5a26"),
ColumnName = "FlowId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "流程Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 16,
Position = 38
},
new
{
Id = new Guid("f00cde73-2294-40d6-d48c-08da3d8d5a26"),
ColumnName = "FlowName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowName",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "流程名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 255,
Position = 40
},
new
{
Id = new Guid("caae5d6f-f9c7-4edb-d48d-08da3d8d5a26"),
ColumnName = "FormId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FormId",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "表单Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 50,
Position = 37
},
new
{
Id = new Guid("609a52aa-48b2-4e64-d48e-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 8,
Position = 32
},
new
{
Id = new Guid("3071360b-c1ef-4dff-d48f-08da3d8d5a26"),
ColumnName = "LaunchTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LaunchTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "发起时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 8,
Position = 36
},
new
{
Id = new Guid("acf079d0-3db9-43f7-d490-08da3d8d5a26"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "发起人Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 16,
Position = 34
},
new
{
Id = new Guid("6284c929-4115-4c17-d491-08da3d8d5a26"),
ColumnName = "UserName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "UserName",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "发起人",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d8948c56-c5bd-4061-b272-5417375f38f0"),
MaxLength = 255,
Position = 35
},
new
{
Id = new Guid("f5c93cc7-50a6-4e0e-d492-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 16,
Position = 41
},
new
{
Id = new Guid("f6d23541-2fca-40e6-d493-08da3d8d5a26"),
ColumnName = "ApprovalDate",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "ApprovalDate",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "审批时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 8,
Position = 52
},
new
{
Id = new Guid("8ad408db-b5aa-4cb7-d494-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 8,
Position = 43
},
new
{
Id = new Guid("2ffaa9ee-c286-4f90-d495-08da3d8d5a26"),
ColumnName = "FlowNodeId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "审批流节点Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 16,
Position = 45
},
new
{
Id = new Guid("aaa312a2-73fb-4c84-d496-08da3d8d5a26"),
ColumnName = "FlowNodeName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeName",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "审批流节点名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 255,
Position = 46
},
new
{
Id = new Guid("043612f1-e16a-4c44-d497-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 8,
Position = 42
},
new
{
Id = new Guid("a8be7873-7ce4-4cb2-d498-08da3d8d5a26"),
ColumnName = "OpinIons",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "OpinIons",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "步骤审批意见",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 255,
Position = 49
},
new
{
Id = new Guid("e8e60481-fb7f-4f1d-d499-08da3d8d5a26"),
ColumnName = "Sort",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Sort",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "步骤顺序号",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 4,
Position = 44
},
new
{
Id = new Guid("2a1c3f3d-4efc-472b-d49a-08da3d8d5a26"),
ColumnName = "SortMore",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "SortMore",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "多次审批顺序号(可能是多次审批次数)",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 4,
Position = 47
},
new
{
Id = new Guid("cbd75568-2ece-4f90-d49b-08da3d8d5a26"),
ColumnName = "State",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "State",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "步骤状态(待审批、同意、不同意、回退升级审批)",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 4,
Position = 48
},
new
{
Id = new Guid("e67fd0c6-a997-4956-d49c-08da3d8d5a26"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "步骤审批人Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 16,
Position = 50
},
new
{
Id = new Guid("24db7ed8-1a4f-4b25-d49d-08da3d8d5a26"),
ColumnName = "UserName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "UserName",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "步骤审批人名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("651bb982-1130-4e1c-9070-36b90dcf2324"),
MaxLength = 255,
Position = 51
},
new
{
Id = new Guid("e346cf76-ec76-4409-d49e-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 16,
Position = 53
},
new
{
Id = new Guid("ae55fabc-3944-4a36-d49f-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 8,
Position = 55
},
new
{
Id = new Guid("b754af63-f1de-4000-d4a0-08da3d8d5a26"),
ColumnName = "FlowApprovalStepId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowApprovalStepId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "步骤Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 16,
Position = 56
},
new
{
Id = new Guid("495fe86e-5bd6-44d4-d4a1-08da3d8d5a26"),
ColumnName = "FlowNodeId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "审批节点Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 16,
Position = 57
},
new
{
Id = new Guid("d48c70e6-4549-41b6-d4a2-08da3d8d5a26"),
ColumnName = "FlowNodeName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeName",
CsType = "String",
DatabaseColumnType = "varchar(500)",
Describe = "审批节点名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 500,
Position = 58
},
new
{
Id = new Guid("0e864b91-b667-4f53-d4a3-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 8,
Position = 54
},
new
{
Id = new Guid("92bc9094-160e-4338-d4a4-08da3d8d5a26"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "审批人Id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 16,
Position = 59
},
new
{
Id = new Guid("0cfc881c-98d4-4a2c-d4a5-08da3d8d5a26"),
ColumnName = "UserName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "UserName",
CsType = "String",
DatabaseColumnType = "varchar(500)",
Describe = "审批人名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7ad3b915-f0bd-443a-89cd-42d41dd6c554"),
MaxLength = 500,
Position = 60
},
new
{
Id = new Guid("2819dfe7-f12b-483c-d4a6-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 16,
Position = 61
},
new
{
Id = new Guid("0e19400d-1876-4fe3-d4a7-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 8,
Position = 63
},
new
{
Id = new Guid("5ca84ecf-5971-45bc-d4a8-08da3d8d5a26"),
ColumnName = "FlowCode",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowCode",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 255,
Position = 65
},
new
{
Id = new Guid("9bc385e0-10ee-4299-d4a9-08da3d8d5a26"),
ColumnName = "FlowId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "FlowId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 16,
Position = 64
},
new
{
Id = new Guid("d45ac420-e348-4d6b-d4aa-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 8,
Position = 62
},
new
{
Id = new Guid("0df6b078-b248-4c83-d4ab-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 255,
Position = 67
},
new
{
Id = new Guid("2321aac8-0eed-4b87-d4ac-08da3d8d5a26"),
ColumnName = "Remark",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Remark",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 255,
Position = 69
},
new
{
Id = new Guid("73d17476-e006-4530-d4ad-08da3d8d5a26"),
ColumnName = "RoleId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "RoleId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 16,
Position = 68
},
new
{
Id = new Guid("e571fd26-b1a8-4648-d4ae-08da3d8d5a26"),
ColumnName = "Sort",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Sort",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("ae6d94d8-6a15-4348-b600-aa17e4b61718"),
MaxLength = 4,
Position = 66
},
new
{
Id = new Guid("c2f1a286-2b35-41d6-d4af-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 16,
Position = 189
},
new
{
Id = new Guid("92c1fffc-5a00-468c-d4b0-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 8,
Position = 191
},
new
{
Id = new Guid("7b900baf-65df-4910-d4b1-08da3d8d5a26"),
ColumnName = "ForeignKeyTableFieldName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "ForeignKeyTableFieldName",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 50,
Position = 195
},
new
{
Id = new Guid("e7facee2-5132-4003-d4b2-08da3d8d5a26"),
ColumnName = "ForeignKeyTableId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "ForeignKeyTableId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 16,
Position = 194
},
new
{
Id = new Guid("2ae91c1d-d618-4267-d4b3-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 8,
Position = 190
},
new
{
Id = new Guid("a2660342-556e-4aef-d4b4-08da3d8d5a26"),
ColumnName = "Low_Code_Table_InfoId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Low_Code_Table_InfoId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 16,
Position = 193
},
new
{
Id = new Guid("585e18ea-ab50-4216-d4b5-08da3d8d5a26"),
ColumnName = "Low_Code_TableId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
CsField = "Low_Code_TableId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 33, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("852f53ff-0d00-4c32-aa55-a9c11993751b"),
MaxLength = 16,
Position = 192
},
new
{
Id = new Guid("7c7400ed-ec08-4832-d4b6-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69edd8a8-1d24-478c-a909-b82039edcec0"),
MaxLength = 16,
Position = 184
},
new
{
Id = new Guid("a29e0236-9c06-4a70-d4b7-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69edd8a8-1d24-478c-a909-b82039edcec0"),
MaxLength = 8,
Position = 186
},
new
{
Id = new Guid("8237d289-05cf-485b-d4b8-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69edd8a8-1d24-478c-a909-b82039edcec0"),
MaxLength = 8,
Position = 185
},
new
{
Id = new Guid("1a2a9e15-dc83-49e1-d4b9-08da3d8d5a26"),
ColumnName = "Low_Code_Table_InfoId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Low_Code_Table_InfoId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69edd8a8-1d24-478c-a909-b82039edcec0"),
MaxLength = 16,
Position = 188
},
new
{
Id = new Guid("7b4df31f-36a3-477c-d4ba-08da3d8d5a26"),
ColumnName = "Low_Code_TableId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Low_Code_TableId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69edd8a8-1d24-478c-a909-b82039edcec0"),
MaxLength = 16,
Position = 187
},
new
{
Id = new Guid("9b1b319a-e9dc-406d-d4c4-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 16,
Position = 196
},
new
{
Id = new Guid("11afcf11-9b42-47ce-d4c5-08da3d8d5a26"),
ColumnName = "ColumnName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "ColumnName",
CsType = "String",
DatabaseColumnType = "varchar(500)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 500,
Position = 204
},
new
{
Id = new Guid("1e40d97a-49ee-4727-d4c6-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 8,
Position = 198
},
new
{
Id = new Guid("e0e9d3c3-b713-419c-d4c7-08da3d8d5a26"),
ColumnName = "CsField",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CsField",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 50,
Position = 208
},
new
{
Id = new Guid("eb846ac3-723e-4207-d4c8-08da3d8d5a26"),
ColumnName = "CsType",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CsType",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 50,
Position = 207
},
new
{
Id = new Guid("48b12860-84de-4f7b-d4c9-08da3d8d5a26"),
ColumnName = "DatabaseColumnType",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "DatabaseColumnType",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 50,
Position = 206
},
new
{
Id = new Guid("3b959124-21d2-45b9-d4ca-08da3d8d5a26"),
ColumnName = "Describe",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Describe",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 50,
Position = 205
},
new
{
Id = new Guid("86b95bf0-4418-46ba-d4cb-08da3d8d5a26"),
ColumnName = "IsIdentity",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "IsIdentity",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 1,
Position = 201
},
new
{
Id = new Guid("5fea8348-aa6b-4577-d4cc-08da3d8d5a26"),
ColumnName = "IsNullable",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "IsNullable",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 1,
Position = 202
},
new
{
Id = new Guid("1d3c8224-a3a5-4b88-d4cd-08da3d8d5a26"),
ColumnName = "IsPrimary",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "IsPrimary",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 1,
Position = 200
},
new
{
Id = new Guid("cf99d60b-2392-493c-d4ce-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 8,
Position = 197
},
new
{
Id = new Guid("f221da94-0a1d-4ce7-d4cf-08da3d8d5a26"),
ColumnName = "Low_Code_TableId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Low_Code_TableId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 16,
Position = 199
},
new
{
Id = new Guid("de43269d-d43b-4a77-d4d0-08da3d8d5a26"),
ColumnName = "MaxLength",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "MaxLength",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 4,
Position = 209
},
new
{
Id = new Guid("4aaa1e18-8c06-4806-d4d1-08da3d8d5a26"),
ColumnName = "Position",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Position",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("79fbd4ec-9f4e-45dc-8065-70f2eb422cdf"),
MaxLength = 4,
Position = 203
},
new
{
Id = new Guid("e75b8650-ee49-4f83-d4d2-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 70
},
new
{
Id = new Guid("b7fbb61f-94fc-4242-d4d3-08da3d8d5a26"),
ColumnName = "Birthday",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Birthday",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "生日",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 75
},
new
{
Id = new Guid("5541e535-7cbe-43d2-d4d4-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "创建时间",
DisplayName = "创建时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 80
},
new
{
Id = new Guid("e4245f5f-bffa-43f0-d4d5-08da3d8d5a26"),
ColumnName = "FilePath",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "FilePath",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "文件地址",
DisplayName = "文件地址",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 78
},
new
{
Id = new Guid("8326ca11-09f1-4c38-d4d6-08da3d8d5a26"),
ColumnName = "Introduce",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Introduce",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "简介",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 77
},
new
{
Id = new Guid("897a208c-2e13-46f1-d4d7-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "更新时间",
DisplayName = "更新时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 81
},
new
{
Id = new Guid("d1eb49cf-c053-4226-d4d8-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "会员名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 72
},
new
{
Id = new Guid("bf24a276-6ed0-49d4-d4d9-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "编号",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 71
},
new
{
Id = new Guid("669b87ce-c694-4c8c-d4da-08da3d8d5a26"),
ColumnName = "Phone",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Phone",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "联系电话",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 73
},
new
{
Id = new Guid("f03ac01c-e0cf-4f13-d4db-08da3d8d5a26"),
ColumnName = "Photo",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Photo",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "头像",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 76
},
new
{
Id = new Guid("72ac247c-d792-4fee-d4dc-08da3d8d5a26"),
ColumnName = "Sex",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Sex",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "性别",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 74
},
new
{
Id = new Guid("837b058b-a88e-4107-d4dd-08da3d8d5a26"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "所属用户",
DisplayName = "所属用户",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 8, 21, 20, 4, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("73c97832-4e7f-4758-86d2-94327971b5fd"),
Position = 79
},
new
{
Id = new Guid("97284d66-88b9-478f-d4e5-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("e79db53b-7162-4669-9b5e-f860501475ac"),
MaxLength = 16,
Position = 82
},
new
{
Id = new Guid("b6422cb6-498e-4ff5-d4e6-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("e79db53b-7162-4669-9b5e-f860501475ac"),
MaxLength = 8,
Position = 84
},
new
{
Id = new Guid("9de60dd7-a403-442d-d4e7-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("e79db53b-7162-4669-9b5e-f860501475ac"),
MaxLength = 8,
Position = 83
},
new
{
Id = new Guid("0f908e1d-4a82-42c1-d4e8-08da3d8d5a26"),
ColumnName = "PermissionType",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "PermissionType",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "数据权限类型",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("e79db53b-7162-4669-9b5e-f860501475ac"),
MaxLength = 4,
Position = 86
},
new
{
Id = new Guid("9c9f9672-3fa0-4c65-d4e9-08da3d8d5a26"),
ColumnName = "RoleId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "RoleId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("e79db53b-7162-4669-9b5e-f860501475ac"),
MaxLength = 16,
Position = 85
},
new
{
Id = new Guid("df559c6b-6f60-467c-d4ea-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("524e71b4-cbf7-4248-8b29-3f99b43f2eb2"),
MaxLength = 16,
Position = 87
},
new
{
Id = new Guid("2341dcb1-8056-4a7c-d4eb-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("524e71b4-cbf7-4248-8b29-3f99b43f2eb2"),
MaxLength = 8,
Position = 89
},
new
{
Id = new Guid("6304e602-84a1-4c57-d4ec-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("524e71b4-cbf7-4248-8b29-3f99b43f2eb2"),
MaxLength = 8,
Position = 88
},
new
{
Id = new Guid("de898f57-abe7-4d2c-d4ed-08da3d8d5a26"),
ColumnName = "SysDataAuthorityId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "SysDataAuthorityId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("524e71b4-cbf7-4248-8b29-3f99b43f2eb2"),
MaxLength = 16,
Position = 90
},
new
{
Id = new Guid("325af03c-cbb7-4de6-d4ee-08da3d8d5a26"),
ColumnName = "SysOrganizationId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "SysOrganizationId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("524e71b4-cbf7-4248-8b29-3f99b43f2eb2"),
MaxLength = 4,
Position = 91
},
new
{
Id = new Guid("bbac9a7c-6e62-4fe6-d4ef-08da3d8d5a26"),
ColumnName = "Code",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Code",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "编码",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 255,
Position = 96
},
new
{
Id = new Guid("2ca9aa7e-321e-47f0-d4f0-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "创建时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 8,
Position = 94
},
new
{
Id = new Guid("ab5c0b3d-8871-42fd-d4f1-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "id",
IsIdentity = true,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 4,
Position = 92
},
new
{
Id = new Guid("aba55ad7-7153-4658-d4f2-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime",
Describe = "更新时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 8,
Position = 93
},
new
{
Id = new Guid("29b765bd-36f4-462f-d4f3-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "分组名/键",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 255,
Position = 98
},
new
{
Id = new Guid("6e69cf9b-d9cd-4c31-d4f4-08da3d8d5a26"),
ColumnName = "ParentId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "ParentId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "父级分组id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 4,
Position = 99
},
new
{
Id = new Guid("84a87e33-8b66-4b9a-d4f5-08da3d8d5a26"),
ColumnName = "Sort",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Sort",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "排序号",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 4,
Position = 95
},
new
{
Id = new Guid("9a850f29-2dd2-4779-d4f6-08da3d8d5a26"),
ColumnName = "Value",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Value",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "值",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("af37f705-7ba0-4883-b1be-8a274ea4c026"),
MaxLength = 255,
Position = 97
},
new
{
Id = new Guid("e1316750-62a4-46aa-d4f7-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 16,
Position = 100
},
new
{
Id = new Guid("743d6eab-b4c8-4a15-d4f8-08da3d8d5a26"),
ColumnName = "ByName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "ByName",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 255,
Position = 103
},
new
{
Id = new Guid("82ee25d2-4e01-4100-d4f9-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 6,
Position = 106
},
new
{
Id = new Guid("a61101b5-8e66-4456-d4fa-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 6,
Position = 105
},
new
{
Id = new Guid("aaa5fae3-8c5b-4427-d4fb-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 255,
Position = 102
},
new
{
Id = new Guid("f9fd0e13-4e5d-42b4-d4fc-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 4,
Position = 101
},
new
{
Id = new Guid("646614d9-d7f3-42c5-d4fd-08da3d8d5a26"),
ColumnName = "Remark",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Remark",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6fabc67a-8b48-49a6-8ba1-c8a32c499d36"),
MaxLength = 255,
Position = 104
},
new
{
Id = new Guid("498327eb-5676-4091-d4fe-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = true,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 107
},
new
{
Id = new Guid("3133985d-586c-4c4e-d4ff-08da3d8d5a26"),
ColumnName = "Close",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Close",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 1,
Position = 119
},
new
{
Id = new Guid("78757b0d-d9ee-45ea-d500-08da3d8d5a26"),
ColumnName = "ComponentName",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "ComponentName",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 115
},
new
{
Id = new Guid("2006ac52-bb49-4e41-d501-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 109
},
new
{
Id = new Guid("f5193134-b39d-4ca0-d502-08da3d8d5a26"),
ColumnName = "Icon",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Icon",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 116
},
new
{
Id = new Guid("12e9e9ad-5631-4dc8-d503-08da3d8d5a26"),
ColumnName = "JumpUrl",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "JumpUrl",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 255,
Position = 122
},
new
{
Id = new Guid("b1f89f8d-8e22-4c4a-d504-08da3d8d5a26"),
ColumnName = "KeepAlive",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "KeepAlive",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 1,
Position = 120
},
new
{
Id = new Guid("7211aea6-eb91-41e5-d505-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 108
},
new
{
Id = new Guid("b52a9e8c-dffb-40b7-d506-08da3d8d5a26"),
ColumnName = "LevelCode",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LevelCode",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 110
},
new
{
Id = new Guid("e74c1f4b-af12-4eaa-d507-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 112
},
new
{
Id = new Guid("235b67f8-62d2-480e-d508-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "编号",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 111
},
new
{
Id = new Guid("f029b676-48ac-4ba3-d509-08da3d8d5a26"),
ColumnName = "ParentId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "ParentId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 4,
Position = 117
},
new
{
Id = new Guid("5aa598a9-6e52-4ae4-d50a-08da3d8d5a26"),
ColumnName = "Router",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Router",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 114
},
new
{
Id = new Guid("1916e619-4818-4c63-d50b-08da3d8d5a26"),
ColumnName = "Show",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Show",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 1,
Position = 118
},
new
{
Id = new Guid("d0fbf229-7204-4494-d50c-08da3d8d5a26"),
ColumnName = "State",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "State",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 1,
Position = 121
},
new
{
Id = new Guid("6c3bb548-aafc-4f16-d50d-08da3d8d5a26"),
ColumnName = "Type",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Type",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
MaxLength = 4,
Position = 123
},
new
{
Id = new Guid("19fa02fe-fb8f-4631-d50e-08da3d8d5a26"),
ColumnName = "Url",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Url",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 58, 7, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d2600250-6f32-4d7d-8395-96cc9fa36db4"),
Position = 113
},
new
{
Id = new Guid("9c4158f4-b5b5-4928-d50f-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 16,
Position = 124
},
new
{
Id = new Guid("fbf2d2c1-454b-4898-d510-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 6,
Position = 126
},
new
{
Id = new Guid("6cfe3b57-006f-436b-d511-08da3d8d5a26"),
ColumnName = "FunctionCode",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "FunctionCode",
CsType = "String",
DatabaseColumnType = "varchar(100)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 100,
Position = 129
},
new
{
Id = new Guid("a908815c-c0e6-4565-d512-08da3d8d5a26"),
ColumnName = "FunctionName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "FunctionName",
CsType = "String",
DatabaseColumnType = "varchar(100)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 100,
Position = 130
},
new
{
Id = new Guid("e4dd55f0-9697-43ae-d513-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 6,
Position = 125
},
new
{
Id = new Guid("29d08351-9091-4c91-d514-08da3d8d5a26"),
ColumnName = "MenuId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "MenuId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 4,
Position = 128
},
new
{
Id = new Guid("c7b2ad1d-ecb0-4497-d515-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 4,
Position = 127
},
new
{
Id = new Guid("9a050102-6300-46ef-d516-08da3d8d5a26"),
ColumnName = "Remark",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Remark",
CsType = "String",
DatabaseColumnType = "varchar(100)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("2ae9e532-7d9a-474b-b629-50a39945c44d"),
MaxLength = 100,
Position = 131
},
new
{
Id = new Guid("ba392537-c1c5-4ecc-d517-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 16,
Position = 1
},
new
{
Id = new Guid("ee8ca902-4e27-40c5-d518-08da3d8d5a26"),
ColumnName = "ActionDisplayName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "ActionDisplayName",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 255,
Position = 14
},
new
{
Id = new Guid("200ff922-513c-4b19-d519-08da3d8d5a26"),
ColumnName = "Api",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Api",
CsType = "String",
DatabaseColumnType = "varchar(500)",
Describe = "接口地址",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 500,
Position = 4
},
new
{
Id = new Guid("063d44b8-6ce2-47a6-d51a-08da3d8d5a26"),
ColumnName = "Browser",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Browser",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 255,
Position = 9
},
new
{
Id = new Guid("a62bb184-93b0-40e3-d51b-08da3d8d5a26"),
ColumnName = "ControllerDisplayName",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "ControllerDisplayName",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 255,
Position = 13
},
new
{
Id = new Guid("0aa2daab-50df-4397-d51c-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 6,
Position = 3
},
new
{
Id = new Guid("5f5c2997-daa8-491c-d51d-08da3d8d5a26"),
ColumnName = "Form",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Form",
CsType = "String",
DatabaseColumnType = "varchar(MAX)",
Describe = "表单信息",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = -1,
Position = 6
},
new
{
Id = new Guid("1d881e59-d88e-497f-d51e-08da3d8d5a26"),
ColumnName = "FormBody",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "FormBody",
CsType = "String",
DatabaseColumnType = "varchar(MAX)",
Describe = "json表单信息",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = -1,
Position = 7
},
new
{
Id = new Guid("ca605278-6972-48b4-d51f-08da3d8d5a26"),
ColumnName = "Ip",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Ip",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "ip地址",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 255,
Position = 5
},
new
{
Id = new Guid("a932f1ce-a55a-480b-d520-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 6,
Position = 2
},
new
{
Id = new Guid("4736479f-6089-4141-d521-08da3d8d5a26"),
ColumnName = "OS",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "OS",
CsType = "String",
DatabaseColumnType = "varchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 255,
Position = 10
},
new
{
Id = new Guid("4467bf43-6e95-4798-d522-08da3d8d5a26"),
ColumnName = "QueryString",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "QueryString",
CsType = "String",
DatabaseColumnType = "varchar(MAX)",
Describe = "地址栏信息",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = -1,
Position = 8
},
new
{
Id = new Guid("0888b15f-3bd2-4881-d523-08da3d8d5a26"),
ColumnName = "TakeUpTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "TakeUpTime",
CsType = "Int64",
DatabaseColumnType = "bigint",
Describe = "接口耗时(毫秒)",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 8,
Position = 12
},
new
{
Id = new Guid("66718de6-5c1a-4229-d524-08da3d8d5a26"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "当前操作人id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("60cceba1-28bf-4d1d-b603-4edf95d512b8"),
MaxLength = 16,
Position = 11
},
new
{
Id = new Guid("d6008705-0d21-42ac-d525-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = true,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 132
},
new
{
Id = new Guid("0b45e9bb-b9f1-4a2f-d526-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 142
},
new
{
Id = new Guid("ce802713-74f5-4f30-d527-08da3d8d5a26"),
ColumnName = "Email",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Email",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 138
},
new
{
Id = new Guid("19a7504c-f740-4b49-d528-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 141
},
new
{
Id = new Guid("cf2e3691-ab88-4420-d529-08da3d8d5a26"),
ColumnName = "Leader",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Leader",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 136
},
new
{
Id = new Guid("11f3d291-cf7a-4143-d52a-08da3d8d5a26"),
ColumnName = "LevelCode",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LevelCode",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 135
},
new
{
Id = new Guid("1121d642-49e8-4b25-d52b-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "组织名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 133
},
new
{
Id = new Guid("5aed3feb-3d77-4e1e-d52c-08da3d8d5a26"),
ColumnName = "OrderNumber",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "OrderNumber",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 134
},
new
{
Id = new Guid("042a59e2-72c1-4c38-d52d-08da3d8d5a26"),
ColumnName = "ParentId",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "ParentId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 140
},
new
{
Id = new Guid("ea63351c-c203-4d40-d52e-08da3d8d5a26"),
ColumnName = "Phone",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Phone",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 137
},
new
{
Id = new Guid("b9bfca2e-f72b-4a3f-d52f-08da3d8d5a26"),
ColumnName = "State",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "State",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 6, 9, 21, 20, 26, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("d26d07cb-158a-4cb2-8b20-5dfd5181af54"),
Position = 139
},
new
{
Id = new Guid("6aa13b8f-1e3c-4750-d530-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 16,
Position = 143
},
new
{
Id = new Guid("b76500c1-91f8-4e44-d531-08da3d8d5a26"),
ColumnName = "Code",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Code",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 255,
Position = 145
},
new
{
Id = new Guid("134c9f62-abd2-476e-d532-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 6,
Position = 150
},
new
{
Id = new Guid("5257ad4f-589d-40d0-d533-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 6,
Position = 149
},
new
{
Id = new Guid("1790b4d5-51b2-4dc0-d534-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 255,
Position = 146
},
new
{
Id = new Guid("2286c948-4f0d-4b66-d535-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 4,
Position = 144
},
new
{
Id = new Guid("5f9a4a78-1bb9-4592-d536-08da3d8d5a26"),
ColumnName = "Remarks",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Remarks",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 255,
Position = 148
},
new
{
Id = new Guid("564a907b-1f47-4849-d537-08da3d8d5a26"),
ColumnName = "State",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "State",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("0a8bdb18-758a-4798-9ffc-e7031dcbf262"),
MaxLength = 4,
Position = 147
},
new
{
Id = new Guid("69875823-326c-4e13-d538-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 16,
Position = 151
},
new
{
Id = new Guid("42430604-7090-442d-d539-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 6,
Position = 153
},
new
{
Id = new Guid("3f7e43c9-762f-48ea-d53a-08da3d8d5a26"),
ColumnName = "DeleteLock",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "DeleteLock",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 1,
Position = 157
},
new
{
Id = new Guid("517cbfe0-275d-4f36-d53b-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 6,
Position = 152
},
new
{
Id = new Guid("be481209-565b-4099-d53c-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 255,
Position = 155
},
new
{
Id = new Guid("dd367fd5-2030-43b2-d53d-08da3d8d5a26"),
ColumnName = "Number",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Number",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 4,
Position = 154
},
new
{
Id = new Guid("dbe000fc-4895-42f2-d53e-08da3d8d5a26"),
ColumnName = "Remark",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Remark",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("f3d7bbb3-c1fb-4d61-92a4-9bc101811335"),
MaxLength = 255,
Position = 156
},
new
{
Id = new Guid("7b6df0cd-c31b-4508-d53f-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
MaxLength = 16,
Position = 158
},
new
{
Id = new Guid("1213c179-e366-4e3c-d540-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
MaxLength = 6,
Position = 163
},
new
{
Id = new Guid("b24ac0e3-71ab-4d48-d541-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
MaxLength = 6,
Position = 162
},
new
{
Id = new Guid("6c934348-be20-4c9e-d542-08da3d8d5a26"),
ColumnName = "MenuFunctionId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "MenuFunctionId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
MaxLength = 16,
Position = 161
},
new
{
Id = new Guid("d41bd8db-1b3f-48fa-d543-08da3d8d5a26"),
ColumnName = "MenuId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "MenuId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
MaxLength = 4,
Position = 160
},
new
{
Id = new Guid("f24f0e45-209e-46b7-d544-08da3d8d5a26"),
ColumnName = "RoleId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "RoleId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("8da38d20-8a09-4e81-8dd8-ed6702aee380"),
MaxLength = 16,
Position = 159
},
new
{
Id = new Guid("5bcf7406-75cc-4171-d545-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 164
},
new
{
Id = new Guid("46bac66f-3cf0-46b3-d546-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "创建时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 166
},
new
{
Id = new Guid("a6752bd9-f3d6-451f-d547-08da3d8d5a26"),
ColumnName = "DeleteLock",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "DeleteLock",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
DisplayName = "删除锁",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 172
},
new
{
Id = new Guid("287314b2-3141-4957-d548-08da3d8d5a26"),
ColumnName = "Email",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Email",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "电子邮箱",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 171
},
new
{
Id = new Guid("e5418d61-916f-45fd-d549-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "更新时间",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 165
},
new
{
Id = new Guid("7cbe8988-cbac-4ea2-d54a-08da3d8d5a26"),
ColumnName = "LoginName",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "LoginName",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "登录名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 168
},
new
{
Id = new Guid("4b5bc027-5663-463a-d54b-08da3d8d5a26"),
ColumnName = "Name",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Name",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "用户名称",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 167
},
new
{
Id = new Guid("5a9fa990-b6d6-445f-d54c-08da3d8d5a26"),
ColumnName = "OrganizationId",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "OrganizationId",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
DisplayName = "组织id",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 173
},
new
{
Id = new Guid("e36410b5-cb7c-4fc3-d54d-08da3d8d5a26"),
ColumnName = "Password",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Password",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "密码",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 169
},
new
{
Id = new Guid("c82d5132-6cda-463e-d54e-08da3d8d5a26"),
ColumnName = "Phone",
CreationTime = new DateTime(2022, 5, 24, 0, 0, 0, 0, DateTimeKind.Unspecified),
CsField = "Phone",
CsType = "String",
DatabaseColumnType = "nvarchar(255)",
Describe = "",
DisplayName = "联系电话",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 12, 7, 11, 6, 31, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("0198459e-2034-4533-b843-5d227ad20740"),
Low_Code_TableId = new Guid("6323638b-a45f-4a76-886e-69a9e9be0901"),
Position = 170
},
new
{
Id = new Guid("a9766bbb-21bf-46da-d54f-08da3d8d5a26"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69b24f04-0ed3-45fc-91d9-0dc929175a57"),
MaxLength = 16,
Position = 174
},
new
{
Id = new Guid("f731ccd3-9a9c-4dda-d550-08da3d8d5a26"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69b24f04-0ed3-45fc-91d9-0dc929175a57"),
MaxLength = 6,
Position = 178
},
new
{
Id = new Guid("135e23db-540b-4096-d551-08da3d8d5a26"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69b24f04-0ed3-45fc-91d9-0dc929175a57"),
MaxLength = 6,
Position = 177
},
new
{
Id = new Guid("4c479d54-530f-4652-d552-08da3d8d5a26"),
ColumnName = "PostId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "PostId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69b24f04-0ed3-45fc-91d9-0dc929175a57"),
MaxLength = 16,
Position = 176
},
new
{
Id = new Guid("cb5f9ecf-9317-4b11-d553-08da3d8d5a26"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 5, 24, 21, 57, 34, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("69b24f04-0ed3-45fc-91d9-0dc929175a57"),
MaxLength = 16,
Position = 175
},
new
{
Id = new Guid("51d2eb90-7ab9-4763-3387-08da716a5c08"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 16,
Position = 20
},
new
{
Id = new Guid("c1ae4945-25fc-45e9-3388-08da716a5c08"),
ColumnName = "ApprovalDate",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "ApprovalDate",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 8,
Position = 29
},
new
{
Id = new Guid("22527fe7-bd5c-4e6c-3389-08da716a5c08"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 8,
Position = 31
},
new
{
Id = new Guid("7485deed-e9e8-4aa6-338a-08da716a5c08"),
ColumnName = "FlowNodeId",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 16,
Position = 22
},
new
{
Id = new Guid("50b6b2fc-3e73-457c-338b-08da716a5c08"),
ColumnName = "FlowNodeName",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = -1,
Position = 23
},
new
{
Id = new Guid("db4510e1-40d2-4db4-338c-08da716a5c08"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 8,
Position = 30
},
new
{
Id = new Guid("bf3dbedf-ade0-4e20-338d-08da716a5c08"),
ColumnName = "Opinions",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "Opinions",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = -1,
Position = 26
},
new
{
Id = new Guid("95414873-486d-4609-338e-08da716a5c08"),
ColumnName = "Sort",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "Sort",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 4,
Position = 21
},
new
{
Id = new Guid("8f107c7c-e4f5-4647-338f-08da716a5c08"),
ColumnName = "SortMore",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "SortMore",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 4,
Position = 24
},
new
{
Id = new Guid("79d371fb-b37a-4d32-3390-08da716a5c08"),
ColumnName = "State",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "State",
CsType = "Int32",
DatabaseColumnType = "int",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 4,
Position = 25
},
new
{
Id = new Guid("3d9c98e4-2ac7-40fd-3391-08da716a5c08"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = 16,
Position = 27
},
new
{
Id = new Guid("022c287a-11e3-4234-3392-08da716a5c08"),
ColumnName = "UserName",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "UserName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("18fbb18e-cb29-45d8-a5f3-c0121c57680a"),
MaxLength = -1,
Position = 28
},
new
{
Id = new Guid("59f5d993-e502-4fee-3393-08da716a5c08"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = 16,
Position = 32
},
new
{
Id = new Guid("cb4a19d3-35dd-416d-3394-08da716a5c08"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = 8,
Position = 39
},
new
{
Id = new Guid("d550fb44-f912-434e-3395-08da716a5c08"),
ColumnName = "FlowApprovalStepHistoryId",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "FlowApprovalStepHistoryId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = 16,
Position = 33
},
new
{
Id = new Guid("a7263191-1e30-42c5-3396-08da716a5c08"),
ColumnName = "FlowNodeId",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = 16,
Position = 34
},
new
{
Id = new Guid("ccc3f055-79c4-4e63-3397-08da716a5c08"),
ColumnName = "FlowNodeName",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "FlowNodeName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = -1,
Position = 35
},
new
{
Id = new Guid("d5e76d95-beed-43c9-3398-08da716a5c08"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = 8,
Position = 38
},
new
{
Id = new Guid("9059bf44-23a0-4e12-3399-08da716a5c08"),
ColumnName = "UserId",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "UserId",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = 16,
Position = 36
},
new
{
Id = new Guid("643c3aa6-d639-46bd-339a-08da716a5c08"),
ColumnName = "UserName",
CreationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
CsField = "UserName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 29, 21, 58, 5, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("7f94e0db-fc63-40dc-bfe3-18c5aad75975"),
MaxLength = -1,
Position = 37
},
new
{
Id = new Guid("1fbf9cea-3e4c-401b-243f-08da717dbcaa"),
ColumnName = "Id",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "Id",
CsType = "Guid",
DatabaseColumnType = "uniqueidentifier",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = true,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 16,
Position = 203
},
new
{
Id = new Guid("7ec46123-3852-4b62-2440-08da717dbcaa"),
ColumnName = "ControllerPath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "ControllerPath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 215
},
new
{
Id = new Guid("be6f08b8-b14b-4253-2441-08da717dbcaa"),
ColumnName = "CreationTime",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "CreationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 8,
Position = 205
},
new
{
Id = new Guid("a06381ef-e532-4b7a-2442-08da717dbcaa"),
ColumnName = "DisplayName",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "DisplayName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = -1,
Position = 209
},
new
{
Id = new Guid("3051fb7c-f075-4d91-2443-08da717dbcaa"),
ColumnName = "EntityName",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "EntityName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = -1,
Position = 210
},
new
{
Id = new Guid("b755e2af-1164-47de-2444-08da717dbcaa"),
ColumnName = "IndexVuePath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "IndexVuePath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 216
},
new
{
Id = new Guid("54a0ed42-104e-4e2a-2445-08da717dbcaa"),
ColumnName = "InfoVuePath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "InfoVuePath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 217
},
new
{
Id = new Guid("1bd2134c-3a2a-4e1b-2446-08da717dbcaa"),
ColumnName = "IsCover",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "IsCover",
CsType = "Boolean",
DatabaseColumnType = "bit",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 1,
Position = 219
},
new
{
Id = new Guid("8e5f9439-6b90-423a-2447-08da717dbcaa"),
ColumnName = "LastModificationTime",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "LastModificationTime",
CsType = "DateTime",
DatabaseColumnType = "datetime2",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = false,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 8,
Position = 204
},
new
{
Id = new Guid("c6042620-d052-4a60-2448-08da717dbcaa"),
ColumnName = "ModelPath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "ModelPath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 213
},
new
{
Id = new Guid("caff37bf-4e91-4934-2449-08da717dbcaa"),
ColumnName = "ProjectRootPath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "ProjectRootPath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 212
},
new
{
Id = new Guid("803c2d4b-4a80-43b0-244a-08da717dbcaa"),
ColumnName = "Remark",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "Remark",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = -1,
Position = 211
},
new
{
Id = new Guid("158b1c2d-fa67-4696-244b-08da717dbcaa"),
ColumnName = "Schema",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "Schema",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = -1,
Position = 207
},
new
{
Id = new Guid("13775de6-200d-43e0-244c-08da717dbcaa"),
ColumnName = "ServiceJsPath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "ServiceJsPath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 218
},
new
{
Id = new Guid("aaecfda3-f48d-4cd5-244d-08da717dbcaa"),
ColumnName = "ServicePath",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "ServicePath",
CsType = "String",
DatabaseColumnType = "varchar(50)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = 50,
Position = 214
},
new
{
Id = new Guid("26f16d3d-9c42-4f86-244e-08da717dbcaa"),
ColumnName = "TableName",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "TableName",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = -1,
Position = 206
},
new
{
Id = new Guid("59cfb48c-8d3f-43d7-244f-08da717dbcaa"),
ColumnName = "Type",
CreationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
CsField = "Type",
CsType = "String",
DatabaseColumnType = "nvarchar(MAX)",
Describe = "",
DisplayName = "",
IsIdentity = false,
IsNullable = true,
IsPrimary = false,
LastModificationTime = new DateTime(2022, 7, 30, 0, 16, 47, 0, DateTimeKind.Unspecified),
Low_Code_TableId = new Guid("6ba9805c-916e-4d2c-99d0-216fcbc361cc"),
MaxLength = -1,
Position = 208
});
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeApp", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("AppClassifyId")
.HasColumnType("char(36)")
.HasColumnName("app_classify_id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("PackagePath")
.HasColumnType("longtext")
.HasColumnName("package_path");
b.Property("PreviewName")
.HasColumnType("longtext")
.HasColumnName("preview_name");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_app");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeAppClassify", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Level")
.HasColumnType("int")
.HasColumnName("level");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("ParentId")
.HasColumnType("char(36)")
.HasColumnName("parent_id");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_app_classify");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeComponent", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("ComponentClassifyId")
.HasColumnType("char(36)")
.HasColumnName("component_classify_id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("PackageDesp")
.HasColumnType("longtext")
.HasColumnName("package_desp");
b.Property("PackageEntry")
.HasColumnType("longtext")
.HasColumnName("package_entry");
b.Property("PackageName")
.HasColumnType("longtext")
.HasColumnName("package_name");
b.Property("PackagePath")
.HasColumnType("longtext")
.HasColumnName("package_path");
b.Property("PackageVersion")
.HasColumnType("longtext")
.HasColumnName("package_version");
b.Property("PreviewName")
.HasColumnType("longtext")
.HasColumnName("preview_name");
b.Property("Size")
.HasColumnType("int")
.HasColumnName("size");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_component");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeComponentClassify", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Level")
.HasColumnType("int")
.HasColumnName("level");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("ParentId")
.HasColumnType("char(36)")
.HasColumnName("parent_id");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_component_classify");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeModel", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("Ext")
.HasColumnType("longtext")
.HasColumnName("ext");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("ModelClassifyId")
.HasColumnType("char(36)")
.HasColumnName("model_classify_id");
b.Property("ModelName")
.HasColumnType("longtext")
.HasColumnName("model_name");
b.Property("PackageName")
.HasColumnType("longtext")
.HasColumnName("package_name");
b.Property("PackagePath")
.HasColumnType("longtext")
.HasColumnName("package_path");
b.Property("PreviewName")
.HasColumnType("longtext")
.HasColumnName("preview_name");
b.Property("Size")
.HasColumnType("bigint")
.HasColumnName("size");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_model");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeModelClassify", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Level")
.HasColumnType("int")
.HasColumnName("level");
b.Property("ModelClassifyName")
.HasColumnType("longtext")
.HasColumnName("model_classify_name");
b.Property("ParentId")
.HasColumnType("char(36)")
.HasColumnName("parent_id");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_model_classify");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeTexture", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("Ext")
.HasColumnType("longtext")
.HasColumnName("ext");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("PackageName")
.HasColumnType("longtext")
.HasColumnName("package_name");
b.Property("PackagePath")
.HasColumnType("longtext")
.HasColumnName("package_path");
b.Property("PreviewName")
.HasColumnType("longtext")
.HasColumnName("preview_name");
b.Property("ResourceName")
.HasColumnType("longtext")
.HasColumnName("resource_name");
b.Property("Size")
.HasColumnType("bigint")
.HasColumnName("size");
b.Property("TextureClassifyId")
.HasColumnType("char(36)")
.HasColumnName("texture_classify_id");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_texture");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.ModelManagements.ThreeTextureClassify", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Level")
.HasColumnType("int")
.HasColumnName("level");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("ParentId")
.HasColumnType("char(36)")
.HasColumnName("parent_id");
b.Property("Version")
.HasColumnType("bigint unsigned")
.HasColumnName("version");
b.HasKey("Id");
b.ToTable("three_texture_classify");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Quartz.QuartzJobTask", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("Cron")
.HasColumnType("longtext")
.HasColumnName("cron");
b.Property("ExecuteTime")
.HasColumnType("datetime(6)")
.HasColumnName("execute_time");
b.Property("GroupName")
.HasColumnType("longtext")
.HasColumnName("group_name");
b.Property("JobPoint")
.HasColumnType("longtext")
.HasColumnName("job_point");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("Remark")
.HasColumnType("longtext")
.HasColumnName("remark");
b.Property("RequsetMode")
.HasColumnType("int")
.HasColumnName("requset_mode");
b.Property("State")
.HasColumnType("int")
.HasColumnName("state");
b.Property("Type")
.HasColumnType("int")
.HasColumnName("type");
b.HasKey("Id");
b.ToTable("quartz_job_task");
b.HasData(
new
{
Id = new Guid("b871a81b-fda6-42b0-bf48-08db0369c499"),
CreationTime = new DateTime(2023, 1, 31, 17, 1, 40, 0, DateTimeKind.Unspecified),
CreatorUserId = new Guid("00000000-0000-0000-0000-000000000000"),
Cron = "0/10 * * * * ?",
GroupName = "CloudGaming.Managers.CalcDataManager",
JobPoint = "CloudGaming.Managers.CalcDataManager>Run",
LastModificationTime = new DateTime(2023, 3, 16, 21, 47, 14, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("00000000-0000-0000-0000-000000000000"),
Name = "Run",
State = 1,
Type = 2
},
new
{
Id = new Guid("0af155d7-a8ee-4a07-ab1a-40dd0c77d7ea"),
CreationTime = new DateTime(2023, 1, 29, 11, 36, 30, 0, DateTimeKind.Unspecified),
CreatorUserId = new Guid("00000000-0000-0000-0000-000000000000"),
Cron = "0/10 * * * * ?",
GroupName = "TEST",
JobPoint = "http://localhost:5600/api/job/JobTest/Test",
LastModificationTime = new DateTime(2023, 3, 9, 14, 33, 11, 0, DateTimeKind.Unspecified),
LastModifierUserId = new Guid("00000000-0000-0000-0000-000000000000"),
Name = "默认测试接口",
Remark = "用于测试",
RequsetMode = 1,
State = 0,
Type = 1
});
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Quartz.QuartzJobTaskLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("JobTaskId")
.HasColumnType("char(36)")
.HasColumnName("job_task_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Text")
.HasColumnType("longtext")
.HasColumnName("text");
b.HasKey("Id");
b.ToTable("quartz_job_task_log");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Systems.SysDataAuthority", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("PermissionType")
.HasColumnType("int")
.HasColumnName("permission_type");
b.Property("RoleId")
.HasColumnType("char(36)")
.HasColumnName("role_id");
b.HasKey("Id");
b.ToTable("sys_data_authority");
b.HasData(
new
{
Id = new Guid("d09bf250-c5b0-41cb-237d-08da00442990"),
CreationTime = new DateTime(2022, 3, 7, 22, 9, 58, 0, DateTimeKind.Unspecified),
LastModificationTime = new DateTime(2022, 7, 6, 21, 53, 17, 0, DateTimeKind.Unspecified),
PermissionType = 5,
RoleId = new Guid("40ff1844-c099-4061-98e0-cd6e544fcfd3")
},
new
{
Id = new Guid("0228a5b5-2202-4ba0-6e48-08da205da7b7"),
CreationTime = new DateTime(2022, 4, 17, 18, 33, 4, 0, DateTimeKind.Unspecified),
LastModificationTime = new DateTime(2022, 4, 17, 18, 33, 4, 0, DateTimeKind.Unspecified),
PermissionType = 5,
RoleId = new Guid("18fa4771-6f58-46a3-80d2-6f0f5e9972e3")
});
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Systems.SysDataAuthorityCustom", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("char(36)")
.HasColumnName("id");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("SysDataAuthorityId")
.HasColumnType("char(36)")
.HasColumnName("sys_data_authority_id");
b.Property("SysOrganizationId")
.HasColumnType("int")
.HasColumnName("sys_organization_id");
b.HasKey("Id");
b.ToTable("sys_data_authority_custom");
});
modelBuilder.Entity("CloudGaming.Core.EntityFramework.Admin.Entities.Systems.SysDictionary", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int")
.HasColumnName("id");
b.Property("Code")
.HasColumnType("longtext")
.HasColumnName("code");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("creation_time");
b.Property("CreatorUserId")
.HasColumnType("char(36)")
.HasColumnName("creator_user_id");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("last_modification_time");
b.Property("LastModifierUserId")
.HasColumnType("char(36)")
.HasColumnName("last_modifier_user_id");
b.Property("Name")
.HasColumnType("longtext")
.HasColumnName("name");
b.Property("ParentId")
.HasColumnType("int")
.HasColumnName("parent_id");
b.Property