using Mapster; namespace Model { /// /// 条件匹配表 pri_query_table /// [SugarTable("pri_query_table", "条件匹配表")] [Tenant("0")] public class PriQueryTable { /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", ColumnName = "status")] public int status { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", ColumnName = "sort")] public int sort { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")] public DateTime? createDate { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")] public DateTime? updateDate { get; set; } /// /// 查询表 /// [SugarColumn(ColumnDescription = "查询表", Length = 50, ColumnName = "table_en_name")] public string? tableEnName { get; set; } /// /// 说明 /// [SugarColumn(ColumnDescription = "说明", Length = 50, ColumnName = "summary")] public string? summary { get; set; } /// /// 项目 /// [SugarColumn(ColumnDescription = "项目", ColumnName = "project_id")] public int projectId { get; set; } /// /// 查询库 /// [SugarColumn(ColumnDescription = "查询库", ColumnName = "database_id")] public int databaseId { get; set; } } }