namespace iWare.Wms.Application.Service.System.LowCode.Dto { public class ContrastLowCode { public string Controls { get; set; } public List Databases { get; set; } } public class ContrastLowCode_Database { public Guid Id { get; set; } public string Control_Key { get; set; } public string Control_Label { get; set; } public string Control_Model { get; set; } public string Control_Type { get; set; } /// /// 表名 /// public string TableName { get; set; } /// /// 类名 /// public string ClassName { get; set; } /// /// 表描述 /// public string TableDesc { get; set; } /// /// 字段名称 /// public string FieldName { get; set; } /// /// 数据类型 /// public Type DbType { get; set; } /// /// 数据类型 /// public string DbTypeName { get; set; } /// /// 数据类型 /// public string DtoTypeName { get; set; } /// /// 数据类型补充参数 /// public string DbParam { get; set; } /// /// 是否必填 /// public bool? IsRequired { get; set; } /// /// 列表显示 /// public bool? WhetherTable { get; set; } /// /// 排序 /// public bool? WhetherOrderBy { get; set; } /// /// 增改 /// public bool? whetherAddUpdate { get; set; } /// /// 是否是查询 /// public bool? QueryWhether { get; set; } /// /// 查询方式 /// public string QueryType { get; set; } } }